検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 254 for host (0.022 sec.)
インターネットサービスプロバイダ (ISP) 名を取得する 4909
« geoip_id_by_name geoip_netspeedcell_by_name » PHP Manual GeoIP 関数 インターネットサービスプロ ... ISP) 名を取得する 説明 geoip_isp_by_name ( string $hostname ): string geoip_isp_by_name() 関数は、 IP アド ... が見つからない場合には警告が発生します。 パラメータ hostname ホスト名あるいは IP アドレス。 戻り値 成功した ... me ( 'www.example.com' ); if ( $isp ) { echo 'This host IP is from ISP: ' . $isp ; } ?> 上の例の出力は以下 ... となります。 This host IP is from ISP: ICANN c/o Internet Assigned Number ...
https://man.plustar.jp/php/function.geoip-isp-by-name.html - [similar]
正規表現によるマッチングを行う 4909
« preg_match_all preg_quote » PHP Manual PCRE 関数 正規表現によるマッチングを行う preg_match (PH ... " ; } ?> 例3 URL からドメイン名を得る <?php // get host name from URL preg_match ( '@^(?:http://)?([^/]+)@ ... ' , "http://www.php.net/index.html" , $matches ); $host = $matches [ 1 ]; // get last two segments of host ... name preg_match ( '/[^.]+\.[^.]+$/' , $host , $matches ); echo "domain name is: { $matches [ 0 ...
https://man.plustar.jp/php/function.preg-match.html - [similar]
memcached サーバーとの接続を閉じる 4909
« Memcache::addServer Memcache::connect » PHP Manual Memcache memcached サーバーとの接続を閉じる ... PI */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); /* ここで何かを行います .. */ memcache ... ew Memcache ; $memcache_obj -> connect ( 'memcache_host' , 11211 ); /* ここで何かを行います .. */ $memcach ...
https://man.plustar.jp/php/memcache.close.html - [similar]
大きな値に対する自動圧縮処理を有効にする 4909
« Memcache::set Memcache::setServerParams » PHP Manual Memcache 大きな値に対する自動圧縮処理を有 ... Memcache ; $memcache_obj -> addServer ( 'memcache_host' , 11211 ); $memcache_obj -> setCompressThreshold ... PI */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); memcache_set_compress_threshold ( $mem ...
https://man.plustar.jp/php/memcache.setcompressthreshold.html - [similar]
実行時設定 4909
« インストール手順 リソース型 » PHP Manual インストール/設定 実行時設定 実行時設定 php.ini の設定 ... INI_ALL seaslog.level 8 PHP_INI_ALL seaslog.remote_host 127.0.0.1 PHP_INI_ALL seaslog.remote_port 514 PHP_ ... h default 1) SeasLog will send log to tcp://remote_host:remote_port or udp://remote_host:remote_port serve ... d variable LineNo in %F . Default 0 seaslog.remote_host string If you use Record TCP or UDP, configure thi ... nction is used when the request is initialized. %H HostName. %P ProcessId. %D Domain:Port. Such as www.clo ...
https://man.plustar.jp/php/seaslog.configuration.html - [similar]
Return a string with the flags of the given field offset 4869
« cubrid_fetch_row cubrid_field_len » PHP Manual CUBRID MySQL 互換関数 Return a string with the ... ags() example <?php $conn = cubrid_connect ( "localhost" , 33000 , "demodb" ); $result = cubrid_execute ( ... $conn , "SELECT * FROM game WHERE host_year=2004 AND nation_code='AUS' AND medal='G'" ); ... の例の出力は以下となります。 Field Name Field Flags host_year not_null primary_key unique_key event_code no ...
https://man.plustar.jp/php/function.cubrid-field-flags.html - [similar]
二文字の国コードを取得する 4869
« geoip_continent_code_by_name geoip_country_code3_by_name » PHP Manual GeoIP 関数 二文字の国コー ... を取得する 説明 geoip_country_code_by_name ( string $hostname ): string geoip_country_code_by_name() 関数は、 ... スに対応する二文字の国コードを返します。 パラメータ hostname 場所を探す対象となるホスト名あるいは IP アドレ ... 'www.example.com' ); if ( $country ) { echo 'This host is located in: ' . $country ; } ?> 上の例の出力は以 ... 下となります。 This host is located in: US 注意 警告 戻り値の完全なリストは ...
https://man.plustar.jp/php/function.geoip-country-code-by-name.html - [similar]
サーバーから項目を削除する 4869
« Memcache::decrement Memcache::flush » PHP Manual Memcache サーバーから項目を削除する Memcache: ... PI */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); /* 項目をサーバーから削除します */ mem ... ew Memcache ; $memcache_obj -> connect ( 'memcache_host' , 11211 ); $memcache_obj -> delete ( 'key_to_dele ...
https://man.plustar.jp/php/memcache.delete.html - [similar]
基本的な使用法 4869
« 例 Memcache » PHP Manual 例 基本的な使用法 基本的な使用法 例1 memcache 拡張モジュールの概要 こ ... ache = new Memcache ; $memcache -> connect ( 'localhost' , 11211 ) or die ( "接続できませんでした" ); $ver ... ハンドラの使用例 <?php $session_save_path = "tcp:// $host : $port ?persistent=1&weight=2&timeout=2&retry_int ... erval=10, ,tcp:// $host : $port " ; ini_set ( 'session.save_handler' , 'me ...
https://man.plustar.jp/php/memcache.examples-overview.html - [similar]
項目の値を増やす 4869
« Memcache::getVersion Memcache::pconnect » PHP Manual Memcache 項目の値を増やす Memcache::incre ... PI */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); /* カウンタを 2 増やします */ $current ... ew Memcache ; $memcache_obj -> connect ( 'memcache_host' , 11211 ); /* カウンタを 3 増やします */ $current ...
https://man.plustar.jp/php/memcache.increment.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT