検索

phrase: max: clip:
target: order:
Results of 151 - 160 of about 374 for Test (0.035 sec.)
名前で指定されたエントリへの、ファイルハンドラを取得する(読み取り専用) 4257
« ZipArchive::getStreamIndex ZipArchive::isCompressionMethodSupported » PHP Manual ZipArchive 名 ... = '' ; $z = new ZipArchive (); if ( $z -> open ( 'test.zip' )) { $fp = $z -> getStreamName ( 'test' , Zip ...
https://man.plustar.jp/php/ziparchive.getstreamname.html - [similar]
名前で定義されたエントリの圧縮メソッドを設定する 4257
« ZipArchive::setCompressionIndex ZipArchive::setEncryptionIndex » PHP Manual ZipArchive 名前で定 ... php $zip = new ZipArchive ; $res = $zip -> open ( 'test.zip' , ZipArchive :: CREATE ); if ( $res === TRUE ... php $zip = new ZipArchive ; $res = $zip -> open ( 'test.zip' , ZipArchive :: CREATE ); if ( $res === TRUE ...
https://man.plustar.jp/php/ziparchive.setcompressionname.html - [similar]
インデックスを使用してエントリの変更時間を設定する 4257
« ZipArchive::setExternalAttributesName ZipArchive::setMtimeName » PHP Manual ZipArchive インデッ ... 例 この例は、 php.zip というZIPファイルを生成し、 test.txt というファイルを変更日時と一緒に追加しています ... php $zip = new ZipArchive (); if ( $zip -> open ( 'test.zip' , ZipArchive :: CREATE ) === TRUE ) { $zip -> ...
https://man.plustar.jp/php/ziparchive.setmtimeindex.html - [similar]
FANN (Fast Artificial Neural Network) 4213
« geoip_time_zone_by_country_and_region はじめに » PHP Manual その他の基本モジュール FANN (Fast ... ural network fann_create_train_from_callback — Creates the training data struct from a user supplied funct ... tion_epochs — Returns the number of cascade candidate stagnation epochs fann_get_cascade_max_cand_epochs — ... gnation_epochs — Sets the number of cascade candidate stagnation epochs fann_set_cascade_max_cand_epochs — ... Returns an copy of a subset of the train data fann_test_data — Test a set of training data and calculates ...
https://man.plustar.jp/php/book.fann.html - [similar]
単純な XML ドキュメントの作成 4213
« 例 XML 名前空間の使用 » PHP Manual 例 単純な XML ドキュメントの作成 単純な XML ドキュメントの作 ... // tag1 // CDATA xmlwriter_start_element ( $xw , 'testc' ); xmlwriter_write_cdata ( $xw , "This is cdata ... content" ); xmlwriter_end_element ( $xw ); // testc xmlwriter_start_element ( $xw , 'testc' ); xmlwri ... ter_start_cdata ( $xw ); xmlwriter_text ( $xw , "test cdata2" ); xmlwriter_end_cdata ( $xw ); xmlwriter_ ... end_element ( $xw ); // testc // 処理命令 xmlwriter_start_pi ( $xw , 'php' ); x ...
https://man.plustar.jp/php/example.xmlwriter-simple.html - [similar]
バックトレースを表示する 4213
« debug_backtrace error_clear_last » PHP Manual エラー処理関数 バックトレースを表示する debug_pr ... rint_backtrace (); } a (); ?> <?php // ファイル名: test.php // このファイルを実行する include 'include.php ... p:17] #3 include(/tmp/include.php) called at [/tmp/test.php:3] 参考 debug_backtrace() - バックトレースを生 ...
https://man.plustar.jp/php/function.debug-print-backtrace.html - [similar]
特殊文字を HTML エンティティに変換する 4213
« htmlspecialchars_decode implode » PHP Manual String 関数 特殊文字を HTML エンティティに変換する ... s() の例 <?php $new = htmlspecialchars ( "<a href='test'>Test</a>" , ENT_QUOTES ); echo $new ; // &lt;a hr ... ef=&#039;test&#039;&gt;Test&lt;/a&gt; ?> 注意 注意 : この関数は上 ...
https://man.plustar.jp/php/function.htmlspecialchars.html - [similar]
変数が宣言されていること、そして null とは異なることを検査する 4213
« is_string print_r » PHP Manual 変数操作 関数 変数が宣言されていること、そして null とは異なるこ ... り値を出力するため var_dump を // 使用している $a = "test" ; $b = "anothertest" ; var_dump (isset( $a )); // ... 配列の要素に対しても動作します: <?php $a = array ( 'test' => 1 , 'hello' => NULL , 'pie' => array( 'a' => ' ... apple' )); var_dump (isset( $a [ 'test' ])); // TRUE var_dump (isset( $a [ 'foo' ])); // ...
https://man.plustar.jp/php/function.isset.html - [similar]
Pause the CPU usage timer 4213
« LuaSandbox::loadString LuaSandbox::registerLibrary » PHP Manual LuaSandbox Pause the CPU usage ... callback $sandbox -> registerLibrary ( 'php' , [ 'test' => function () use ( $sandbox ) { $sandbox -> pau ... ndbox -> unpauseUsageTimer (); doWait ( 0.1 ); }, 'test2' => function () use ( $sandbox ) { $sandbox -> pa ... not time out...\n" ; $sandbox -> loadString ( 'php.test()' )-> call (); echo "This should time out.\n" ; t ... ry { $sandbox -> loadString ( 'php.test2()' )-> call (); echo "It did not?\n" ; } catch ( ...
https://man.plustar.jp/php/luasandbox.pauseusagetimer.html - [similar]
サーバーに項目を追加する 4213
« Memcache Memcache::addServer » PHP Manual Memcache サーバーに項目を追加する Memcache::add (PEC ... API */ memcache_add ( $memcache_obj , 'var_key' , 'test variable' , false , 30 ); /* オブジェクト指向の AP ... I */ $memcache_obj -> add ( 'var_key' , 'test variable' , false , 30 ); ?> 参考 Memcache::set() ...
https://man.plustar.jp/php/memcache.add.html - [similar]