検索

phrase: max: clip:
target: order:
Results of 271 - 280 of about 746 for SERVER (0.937 sec.)
INI 設定 3391
« ビルトインウェブサーバー ガベージコレクション » PHP Manual コマンドラインの使用法 INI 設定 INI ... 設定オプション 名前 デフォルト 変更可能 変更履歴 cli_server.color "0" PHP_INI_ALL 以下に設定ディレクティブに関 ... する 簡単な説明を示します。 cli_server.color bool 組み込みの開発用ウェブサーバーで、ANSI ... 力できるようにします。 関連キーワード: 設定 , 変更 , server , 名前 , 履歴 , ALL , 組み込み , 開発 , ターミナル ...
https://man.plustar.jp/php/features.commandline.ini.html - [similar]
Microsoft SQL Server 関数 (PDO_SQLSRV) 3391
« PDO_MYSQL DSN PDO_SQLSRV DSN » PHP Manual PDO ドライバ Microsoft SQL Server 関数 (PDO_SQLSRV) ... Microsoft SQL Server 関数 (PDO_SQLSRV) はじめに PDO_SQLSRV は、 PHP Dat ... ーフェイス を実装したドライバです。 PHP から、MS SQL Server (SQL Server 2005 以降) および SQL Azure データベー ... せん。 Linux の場合は ODBC および » Microsoft's SQL Server ODBC Driver for Linux を参照ください。 定義済み定数 ... tion を参照ください。 目次 PDO_SQLSRV DSN — MS SQL Server および SQL Azure データベースに接続する 関連キーワ ...
https://man.plustar.jp/php/ref.pdo-sqlsrv.html - [similar]
Create a client 3391
« Yar_Client::__call Yar_Client::setOpt » PHP Manual Yar_Client Create a client Yar_Client::__co ... array $options = ? ) Create a Yar_Client to a Yar_Server . パラメータ url Yar Server URL. 戻り値 Yar_Client ... ード: Yar , a , construct , Create , call , setOpt , Server , example , Set , service ...
https://man.plustar.jp/php/yar-client.construct.html - [similar]
FTP 接続にログインする 3370
« ftp_get ftp_mdtm » PHP Manual FTP 関数 FTP 接続にログインする ftp_login (PHP 4, PHP 5, PHP 7, ... 待していました。 例 例1 ftp_login() の例 <?php $ftp_server = "ftp.example.com" ; $ftp_user = "foo" ; $ftp_pas ... 接続に失敗したら終了する。 $ftp = ftp_connect ( $ftp_server ) or die( "Couldn't connect to $ftp_server " ); // ... $ftp_pass )) { echo "Connected as $ftp_user @ $ftp_server \n" ; } else { echo "Couldn't connect as $ftp_user ...
https://man.plustar.jp/php/function.ftp-login.html - [similar]
利用可能なDSNについての情報を返す 3370
« odbc_cursor odbc_do » PHP Manual ODBC 関数 利用可能なDSNについての情報を返す odbc_data_source ... 例の出力は、 たとえば以下のようになります。 Array ( [server] => dsn [description] => ODBC Driver 17 for SQL Se ... rver ) Array ( [server] => other_dsn [description] => Microsoft Access Dr ... 情報 , fetch , type , data , 関数 , description , server , Array , コール ...
https://man.plustar.jp/php/function.odbc-data-source.html - [similar]
Run a single task and return a result [deprecated] 3370
« GearmanClient::data GearmanClient::doBackground » PHP Manual GearmanClient Run a single task a ... t. $gmclient = new GearmanClient (); # Add default server (localhost). $gmclient -> addServer (); echo "Send ... t. $gmworker = new GearmanWorker (); # Add default server (localhost). $gmworker -> addServer (); # Register ... function "reverse" with the server. Change the worker function to # "reverse_fn_fast" ... t. $gmclient = new GearmanClient (); # Add default server (localhost). $gmclient -> addServer (); echo "Send ...
https://man.plustar.jp/php/gearmanclient.do.html - [similar]
Run a single task and return a result 3370
« GearmanClient::doLowBackground GearmanClient::doStatus » PHP Manual GearmanClient Run a single ... t. $gmclient = new GearmanClient (); # Add default server (localhost). $gmclient -> addServer (); echo "Send ... t. $gmworker = new GearmanWorker (); # Add default server (localhost). $gmworker -> addServer (); # Register ... function "reverse" with the server. Change the worker function to # "reverse_fn_fast" ... t. $gmclient = new GearmanClient (); # Add default server (localhost). $gmclient -> addServer (); echo "Send ...
https://man.plustar.jp/php/gearmanclient.donormal.html - [similar]
指定したサーバーからアイテムを削除する 3370
« Memcached::delete Memcached::deleteMulti » PHP Manual Memcached 指定したサーバーからアイテムを ... 除する 説明 public Memcached::deleteByKey ( string $server_key , string $key , int $time = 0 ): bool Memcache ... Memcached::delete() と同等です。しかし、自由形式の server_key を使用して、 key を特定のサーバーに関連付けるこ ... とができます。 パラメータ server_key 値を格納したりデータを取得したりするサーバーを ... 削除 , Memcached , key , 指定 , キー , deleteByKey , server , deleteMulti ...
https://man.plustar.jp/php/memcached.deletebykey.html - [similar]
指定したサーバー上のアイテムに新しい有効期限を設定する 3370
« Memcached::touch MemcachedException » PHP Manual Memcached 指定したサーバー上のアイテムに新しい ... 設定する 説明 public Memcached::touchByKey ( string $server_key , string $key , int $expiration ): bool Memcac ... Memcached::touch() と同等です。しかし、自由形式の server_key を使用して、 key を特定のサーバーに関連付けるこ ... とができます。 パラメータ server_key 値を格納したりデータを取得したりするサーバーを ... emcached , 設定 , key , 指定 , touchByKey , キー , server , expiration ...
https://man.plustar.jp/php/memcached.touchbykey.html - [similar]
FTP サーバーからファイルをダウンロードする 3356
« ftp_get_option ftp_login » PHP Manual FTP 関数 FTP サーバーからファイルをダウンロードする ftp_ ... php // 変数を定義する $local_file = 'local.zip' ; $server_file = 'server.zip' ; // 接続を確立する $ftp = ftp ... _connect ( $ftp_server ); // ユーザー名とパスワードでログインする $login_ ... in ( $ftp , $ftp_user_name , $ftp_user_pass ); // $server_file をダウンロードし、$local_file への保存を試みる ... if ( ftp_get ( $ftp , $local_file , $server_file , FTP_BINARY )) { echo "Successfully written ...
https://man.plustar.jp/php/function.ftp-get.html - [similar]