検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 374 for Test (0.028 sec.)
項目の値を減らす 4213
« Memcache::connect Memcache::delete » PHP Manual Memcache 項目の値を減らす Memcache::decrement ... $new_value = memcache_decrement ( $memcache_obj , 'test_item' , 2 ); /* オブジェクト指向の API */ $memcach ... します */ $new_value = $memcache_obj -> decrement ( 'test_item' , 3 ); ?> 参考 Memcache::increment() - 項目の ...
https://man.plustar.jp/php/memcache.decrement.html - [similar]
既存項目の値を置換する 4213
« Memcache::pconnect Memcache::set » PHP Manual Memcache 既存項目の値を置換する Memcache::replac ... 続き型の API */ memcache_replace ( $memcache_obj , "test_key" , "some variable" , false , 30 ); /* オブジェ ... クト指向の API */ $memcache_obj -> replace ( "test_key" , "some variable" , false , 30 ); ?> 参考 Mem ...
https://man.plustar.jp/php/memcache.replace.html - [similar]
インデックスで定義されたエントリの外部属性を取得する 4213
« ZipArchive::getCommentName ZipArchive::getExternalAttributesName » PHP Manual ZipArchive インデ ... 合に false を返します。 例 この例は、ZIP アーカイブ test.zip の 全エントリを展開し、外部属性から Unixの権限 ... php $zip = new ZipArchive (); if ( $zip -> open ( 'test.zip' ) === TRUE ) { for ( $idx = 0 ; $s = $zip -> ...
https://man.plustar.jp/php/ziparchive.getexternalattributesindex.html - [similar]
他の SAPI との違い 4169
« はじめに オプション » PHP Manual コマンドラインの使用法 他の SAPI との違い 他の SAPI との違い ... しません ! 例1 CGI SAPI との違いを示す例 <?php // test.php という名前のシンプルなテストアプリケーション e ... うになります。 $ pwd /tmp $ php -q another_directory/test.php /tmp/another_directory これは、PHP がカレントデ ... うになります。 $ pwd /tmp $ php -f another_directory/test.php /tmp これにより、PHP でシェルツールを書く際の柔 ...
https://man.plustar.jp/php/features.commandline.differences.html - [similar]
配列の全ての要素に、ユーザー関数を再帰的に適用する 4169
« array_values array_walk » PHP Manual 配列 関数 配列の全ての要素に、ユーザー関数を再帰的に適用す ... 'sweet' => $sweet , 'sour' => 'lemon' ); function test_print ( $item , $key ) { echo " $key holds $item \ ... n" ; } array_walk_recursive ( $fruits , 'test_print' ); ?> 上の例の出力は以下となります。 a hold ...
https://man.plustar.jp/php/function.array-walk-recursive.html - [similar]
ヘッダ用の関数を登録する 4169
« getservbyport header_remove » PHP Manual ネットワーク 関数 ヘッダ用の関数を登録する header_reg ... header ( 'Content-Type: text/plain' ); header ( 'X-Test: foo' ); function foo () { foreach ( headers_list ... er_remove ( 'X-Powered-By' ); } header_remove ( 'X-Test' ); } } $result = header_register_callback ( 'foo' ...
https://man.plustar.jp/php/function.header-register-callback.html - [similar]
GD ファイルまたは URL から新規イメージを生成する 4169
« imagecreatefromgd2part imagecreatefromgif » PHP Manual GD および Image 関数 GD ファイルまたは ... 画像を読み込みます $im = @ imagecreatefromgd ( './test.gd' ); // 画像が読み込まれているかどうかを調べます ... 処理をします // 画像を保存します imagegd ( $im , './test_updated.gd' ); imagedestroy ( $im ); ?> 注意 警告 ...
https://man.plustar.jp/php/function.imagecreatefromgd.html - [similar]
GD2 ファイルまたは URL から新規イメージを生成する 4169
« imagecreatefrombmp imagecreatefromgd2part » PHP Manual GD および Image 関数 GD2 ファイルまたは ... 2 画像を読み込みます $im = imagecreatefromgd2 ( './test.gd2' ); // 画像にエフェクトを施します。ここでは、 ... EGATE ); } // 画像を保存します imagegd2 ( $im , './test_updated.gd2' ); imagedestroy ( $im ); ?> 注意 警告 ...
https://man.plustar.jp/php/function.imagecreatefromgd2.html - [similar]
文字セットオブジェクトを返す 4169
« mysqli::$field_count mysqli::$client_info » PHP Manual mysqli 文字セットオブジェクトを返す mys ... $db -> real_connect ( "localhost" , "root" , "" , "test" ); var_dump ( $db -> get_charset ()); ?> 手続き型 ... _real_connect ( $db , "localhost" , "root" , "" , "test" ); var_dump ( mysqli_get_charset ( $db )); ?> 上の ...
https://man.plustar.jp/php/mysqli.get-charset.html - [similar]
エラーおよびエラー処理 4169
« プリペアドステートメントおよびストアドプロシージャ ラージオブジェクト (LOB) » PHP Manual PDO エ ... およびエラーモードの設定 <?php $dsn = 'mysql:dbname=testdb;host=127.0.0.1' ; $user = 'dbuser' ; $password = ... タでのエラーモードの設定 <?php $dsn = 'mysql:dbname=test;host=127.0.0.1' ; $user = 'googleguy' ; $password ... [42S02]: Base table or view not found: 1146 Table 'test.wrongtable' doesn't exist in /tmp/pdo_test.php on ...
https://man.plustar.jp/php/pdo.error-handling.html - [similar]