検索

phrase: max: clip:
target: order:
Results of 591 - 600 of about 1938 for IF (0.034 sec.)
ある拡張機能がロードされているかどうかを調べる 2375
« dl gc_collect_cycles » PHP Manual PHP オプション/情報 関数 ある拡張機能がロードされているかどう ... を返します。 例 例1 extension_loaded() の例 <?php if (! extension_loaded ( 'gd' )) { if (! dl ( 'gd.so' ...
https://man.plustar.jp/php/function.extension-loaded.html - [similar]
FTP サーバー上でディレクトリを移動する 2375
« ftp_cdup ftp_chmod » PHP Manual FTP 関数 FTP サーバー上でディレクトリを移動する ftp_chdir (PHP ... r_name , $ftp_user_pass ); // 接続できたか確認する if ((! $ftp ) || (! $login_result )) { die( "FTP conn ... . ftp_pwd ( $ftp ) . "\n" ; // somedir に移動する if ( ftp_chdir ( $ftp , "somedir" )) { echo "Current ...
https://man.plustar.jp/php/function.ftp-chdir.html - [similar]
HTML 数値エンティティを文字にデコードする 2375
« mb_decode_mimeheader mb_detect_encoding » PHP Manual マルチバイト文字列 関数 HTML 数値エンティ ... $i * 8 , 8 ); $v = base_convert ( $u , 16 , 10 ); if ( $v < 256 && $map [ $v ]) { $encoded .= '\\x' . s ... ubstr ( $u , 6 , 2 ); } else if ( $v == 2028 ) { $encoded .= '\\u2028' ; } else if ...
https://man.plustar.jp/php/function.mb-decode-numericentity.html - [similar]
未解決のデータベーストランザクションをロールバックする 2375
« oci_result oci_server_version » PHP Manual OCI8 関数 未解決のデータベーストランザクションをロー ... す $r = oci_execute ( $stid , OCI_NO_AUTO_COMMIT ); if (! $r ) { $e = oci_error ( $stid ); trigger_error ... ; $r = oci_execute ( $stid , OCI_NO_AUTO_COMMIT ); if (! $r ) { $e = oci_error ( $stid ); oci_rollback ( ... への変更をコミットします $r = oci_commit ( $conn ); if (! r ) { $e = oci_error ( $conn ); trigger_error ( ...
https://man.plustar.jp/php/function.oci-rollback.html - [similar]
現在実行中のプロセスをフォークする 2375
« pcntl_exec pcntl_get_last_error » PHP Manual PCNTL 関数 現在実行中のプロセスをフォークする pcn ... 例1 pcntl_fork() の例 <?php $pid = pcntl_fork (); if ( $pid == - 1 ) { die( 'fork できません' ); } else ... if ( $pid ) { // 親プロセスの場合 pcntl_wait ( $statu ...
https://man.plustar.jp/php/function.pcntl-fork.html - [similar]
指定したカラムの全ての行を配列として取得する 2375
« pg_execute pg_fetch_all » PHP Manual PostgreSQL 関数 指定したカラムの全ての行を配列として取得す ... <?php $conn = pg_pconnect ( "dbname=publisher" ); if (! $conn ) { echo "An error occurred.\n" ; exit; } ... nn , "SELECT title, name, address FROM authors" ); if (! $result ) { echo "An error occurred.\n" ; exit; ...
https://man.plustar.jp/php/function.pg-fetch-all-columns.html - [similar]
データベース接続を調べる 2375
« pg_pconnect pg_port » PHP Manual PostgreSQL 関数 データベース接続を調べる pg_ping (PHP 4 >= 4. ... <?php $conn = pg_pconnect ( "dbname=publisher" ); if (! $conn ) { echo "エラーが発生しました。\n" ; exi ... t; } if (! pg_ping ( $conn )) die( "接続は壊れています。\n ...
https://man.plustar.jp/php/function.pg-ping.html - [similar]
指定されたストリームのファイル書き込みバッファリングを有効にする 2375
« stream_set_timeout stream_socket_accept » PHP Manual ストリーム 関数 指定されたストリームのファ ... 示したものです。 <?php $fp = fopen ( $file , "w" ); if ( $fp ) { if ( stream_set_write_buffer ( $fp , 0 ) ...
https://man.plustar.jp/php/function.stream-set-write-buffer.html - [similar]
Add a background task to be run in parallel 2375
« GearmanClient::addTask GearmanClient::addTaskHigh » PHP Manual GearmanClient Add a background ... いる一意な ID。 戻り値 A GearmanTask object or false if the task could not be added. 例 例1 Two tasks, one ... ckground and one not This example illustrates the difference between running a background task and a nor ... the job can be tracked. A simple worker with an artificial delay reports on the job progress and the cli ... round ( "reverse" , "!dlroW olleH" , null , "2" ); if (! $gmc -> runTasks ()) { echo "ERROR " . $gmc -> ...
https://man.plustar.jp/php/gearmanclient.addtaskbackground.html - [similar]
Run a task in the background 2375
« GearmanClient::do GearmanClient::doHigh » PHP Manual GearmanClient Run a task in the backgroun ... ackground job The worker in this example has an artificial delay introduced to mimic a long running job. ... -> doBackground ( "reverse" , "this is a test" ); if ( $gmclient -> returnCode () != GEARMAN_SUCCESS ) ... ); $stat = $gmclient -> jobStatus ( $job_handle ); if (! $stat [ 0 ]) // the job is known so it is not d ...
https://man.plustar.jp/php/gearmanclient.dobackground.html - [similar]