検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 374 for Test (0.013 sec.)
最初の引数で指定したコールバック関数をコールする 4994
« call_user_func_array create_function » PHP Manual 関数処理 関数 最初の引数で指定したコールバッ ... espace Foobar ; class Foo { static public function test () { print "Hello world!\n" ; } } call_user_func ( ... __NAMESPACE__ . '\Foo::test' ); call_user_func (array( __NAMESPACE__ . '\Foo' ... , 'test' )); ?> 上の例の出力は以下となります。 Hello world ... _func (function( $arg ) { print "[ $arg ]\n" ; }, 'test' ); ?> 上の例の出力は以下となります。 [test] 注意 ...
https://man.plustar.jp/php/function.call-user-func.html - [similar]
下位互換性のない変更点 4994
« PHP 5.6.x から PHP 7.0.x への移行 新機能 » PHP Manual PHP 5.6.x から PHP 7.0.x への移行 下位互 ... ly variables should be passed by reference in /tmp/test.php on line 13 foreach の変更 foreach の振る舞いが ... thmeticError: Bit shift by negative number in /tmp/test.php:2 Stack trace: #0 {main} thrown in /tmp/test.p ... non well formed numeric value encountered in /tmp/test.php on line 5 string(3) "foo" filter_var() を使えば ... rn value of new by reference is deprecated in /tmp/test.php on line 3 上の例の PHP 7 での出力は、このように ...
https://man.plustar.jp/php/migration70.incompatible.html - [similar]
複数のステートメント 4994
« ストアドプロシージャ トランザクションのサポート » PHP Manual クイックスタートガイド 複数のステ ... abase" ); $mysqli -> query ( "DROP TABLE IF EXISTS test" ); $mysqli -> query ( "CREATE TABLE test(id INT)" ... ); $sql = "SELECT COUNT(*) AS _num FROM test; INSERT INTO test(id) VALUES (1); SELECT COUNT(*) ... AS _num FROM test; " ; $mysqli -> multi_query ( $sql ); do { if ( $r ...
https://man.plustar.jp/php/mysqli.quickstart.multiple-statement.html - [similar]
スタックトレースを取得する 4950
« Error::getLine Error::getTraceAsString » PHP Manual Error スタックトレースを取得する Error::ge ... します 例 例1 Error::getTrace() の例 <?php function test () { throw new Error ; } try { test (); } catch( E ... x.php" ["line"]=> int(7) ["function"]=> string(4) "test" ["args"]=> array(0) { } } } 参考 Throwable::getTr ...
https://man.plustar.jp/php/error.gettrace.html - [similar]
スタックトレースを取得する 4950
« Exception::getLine Exception::getTraceAsString » PHP Manual Exception スタックトレースを取得す ... 。 例 例1 Exception::getTrace() の例 <?php function test () { throw new Exception ; } try { test (); } catc ... x.php" ["line"]=> int(7) ["function"]=> string(4) "test" ["args"]=> array(0) { } } } 参考 Throwable::getTr ...
https://man.plustar.jp/php/exception.gettrace.html - [similar]
オープンしたモジュールのセルフテストを実行する 4950
« mcrypt_enc_is_block_mode mcrypt_encrypt » PHP Manual Mcrypt 関数 オープンしたモジュールのセルフ ... テストを実行する mcrypt_enc_self_test (PHP 4 >= 4.0.2, PHP 5, PHP 7 < 7.2.0, PECL mcrypt ... >= 1.0.0) mcrypt_enc_self_test — オープンしたモジュールのセルフテストを実行する 警 ... 頼らないことを強く推奨します。 説明 mcrypt_enc_self_test ( resource $td ): int この関数は、記述子 td で指定 ...
https://man.plustar.jp/php/function.mcrypt-enc-self-test.html - [similar]
オブジェクトもしくはクラスにプロパティが存在するかどうかを調べる 4950
« method_exists trait_exists » PHP Manual クラス/オブジェクト関数 オブジェクトもしくはクラスにプ ... { public $mine ; private $xpto ; static protected $test ; static function test () { var_dump ( property_ex ... //false var_dump ( property_exists ( 'myClass' , 'test' )); //true myClass :: test (); ?> 注意 注意 : この ...
https://man.plustar.jp/php/function.property-exists.html - [similar]
ビット演算子 4950
« 代入演算子 比較演算子 » PHP Manual 演算子 ビット演算子 ビット演算子 ビット演算子は、整数値の特 ... H --------- --------- -- --------- result value op test --------- --------- -- --------- EOH; /* * ここから ... が本番 */ $values = array( 0 , 1 , 2 , 4 , 8 ); $test = 1 + 4 ; echo "\n Bitwise AND \n" ; foreach ( $va ... lues as $value ) { $result = $value & $test ; printf ( $format , $result , $value , '&' , $tes ... oreach ( $values as $value ) { $result = $value | $test ; printf ( $format , $result , $value , '|' , $tes ...
https://man.plustar.jp/php/language.operators.bitwise.html - [similar]
SOAP リクエストを処理する 4950
« SoapServer::getFunctions SoapServer::setClass » PHP Manual SoapServer SOAP リクエストを処理する ... た。 例 例1 SoapServer::handle() の例 <?php function test ( $x ) { return $x ; } $server = new SoapServer ( ... null , array( 'uri' => "http://test-uri/" )); $server -> addFunction ( "test" ); $serv ...
https://man.plustar.jp/php/soapserver.handle.html - [similar]
内容を指定して、ファイルを ZIP アーカイブに追加する 4950
« ZipArchive::addFile ZipArchive::addGlob » PHP Manual ZipArchive 内容を指定して、ファイルを ZIP ... php $zip = new ZipArchive ; $res = $zip -> open ( 'test.zip' , ZipArchive :: CREATE ); if ( $res === TRUE ... ) { $zip -> addFromString ( 'test.txt' , 'ここにファイルの内容を書きます' ); $zip -> ... <?php $zip = new ZipArchive ; if ( $zip -> open ( 'test.zip' ) === TRUE ) { $zip -> addFromString ( 'dir/t ...
https://man.plustar.jp/php/ziparchive.addfromstring.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT