検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 179 for hello (0.071 sec.)
luaclosure を起動 5777
« LuaClosure LuaSandbox » PHP Manual LuaClosure luaclosure を起動 LuaClosure::__invoke (PECL lua ... = $lua -> eval (<<<CODE return (function () print("hello world") end) CODE ); $lua -> call ( $closure ); $c ... losure (); ?> 上の例の出力は以下となります。 hello worldhello world 関連キーワード: luaclosure , 起動 ...
https://man.plustar.jp/php/luaclosure.invoke.html - [similar]
The MongoDB\Driver\BulkWrite class 5722
« MongoDB\Driver\Query::__construct MongoDB\Driver\BulkWrite::__construct » PHP Manual MongoDB\D ... ([ '_id' => 2 ]); $bulk -> insert ([ '_id' => 3 , 'hello' => 'world' ]); $bulk -> update ([ '_id' => 3 ], [ ... '$set' => [ 'hello' => 'earth' ]]); $bulk -> insert ([ '_id' => 4 , ' ... ); $bulk -> update ([ '_id' => 4 ], [ '$set' => [ 'hello' => 'moon' ]]); $bulk -> insert ([ '_id' => 3 ]); ...
https://man.plustar.jp/php/class.mongodb-driver-bulkwrite.html - [similar]
文字列を文字列により分割する 5722
« echo fprintf » PHP Manual String 関数 文字列を文字列により分割する explode (PHP 4, PHP 5, PHP ... 文字列だけを含む一要素の配列を返します */ $input1 = "hello" ; $input2 = "hello,there" ; $input3 = ',' ; var_d ... 出力は以下となります。 array(1) ( [0] => string(5) "hello" ) array(2) ( [0] => string(5) "hello" [1] => stri ...
https://man.plustar.jp/php/function.explode.html - [similar]
文字の変換あるいは部分文字列の置換を行う 5722
« strtoupper substr_compare » PHP Manual String 関数 文字の変換あるいは部分文字列の置換を行う st ... う strtr() の例 <?php $trans = array( "h" => "-" , "hello" => "hi" , "hi" => "hello" ); echo strtr ( "hi all ... , I said hello" , $trans ); ?> 上の例の出力は以下となります。 hel ...
https://man.plustar.jp/php/function.strtr.html - [similar]
Add a high priority task to run in parallel 5722
« GearmanClient::addTaskBackground GearmanClient::addTaskHighBackground » PHP Manual GearmanClie ... gh priority $task = $gmc -> addTask ( "reverse" , "Hello World!" , null , "1" ); $task = $gmc -> addTaskHig ... ll , "2" ); $task = $gmc -> addTask ( "reverse" , "Hello World!" , null , "3" ); if (! $gmc -> runTasks ()) ... 出力は、 たとえば以下のようになります。 COMPLETE: 2, Hello World! COMPLETE: 3, !dlroW olleH COMPLETE: 1, !dlr ...
https://man.plustar.jp/php/gearmanclient.addtaskhigh.html - [similar]
Add a low priority task to run in parallel 5722
« GearmanClient::addTaskHighBackground GearmanClient::addTaskLowBackground » PHP Manual GearmanC ... ow priority $task = $gmc -> addTask ( "reverse" , "Hello World!" , null , "1" ); $task = $gmc -> addTaskLow ... ll , "2" ); $task = $gmc -> addTask ( "reverse" , "Hello World!" , null , "3" ); if (! $gmc -> runTasks ()) ... dlroW olleH COMPLETE: 1, !dlroW olleH COMPLETE: 2, Hello World! DONE 参考 GearmanClient::addTask() - Add a ...
https://man.plustar.jp/php/gearmanclient.addtasklow.html - [similar]
内部的な zval を表す文字列をダンプする 5655
« boolval doubleval » PHP Manual 変数操作 関数 内部的な zval を表す文字列をダンプする debug_zval ... せん。 例 例1 debug_zval_dump() の例 <?php $var1 = 'Hello' ; $var1 .= ' World' ; $var2 = $var1 ; debug_zval_ ... 1 ); ?> 上の例の出力は以下となります。 string(11) "Hello World" refcount(3) 注意 : refcount を理解する Zend ... ちょっと変更した例を考えてみましょう: <?php $var1 = 'Hello' ; $var1 .= ' World' ; // Point three variables as ... 1 ); ?> 上の例の出力は以下となります。 string(11) "Hello World" refcount(2) $var1 , $var2 , $var3 はリファレ ...
https://man.plustar.jp/php/function.debug-zval-dump.html - [similar]
変数が宣言されていること、そして null とは異なることを検査する 5599
« is_string print_r » PHP Manual 変数操作 関数 変数が宣言されていること、そして null とは異なるこ ... しても動作します: <?php $a = array ( 'test' => 1 , 'hello' => NULL , 'pie' => array( 'a' => 'apple' )); var_ ... t( $a [ 'foo' ])); // FALSE var_dump (isset( $a [ 'hello' ])); // FALSE // キー 'hello' は NULL と等しいので ... 、次を試してみること: var_dump ( array_key_exists ( 'hello' , $a )); // TRUE // 配列の深い要素の値のチェック ...
https://man.plustar.jp/php/function.isset.html - [similar]
Load Lua code into the Lua environment 5599
« LuaSandbox::loadBinary LuaSandbox::pauseUsageTimer » PHP Manual LuaSandbox Load Lua code into ... unction = $sandbox -> loadString ( <<<CODE return "Hello, world" CODE ); // Execute the loaded code var_dum ... 出力は以下となります。 array(1) { [0]=> string(12) "Hello, world" } 参考 LuaSandbox::registerLibrary() - Reg ...
https://man.plustar.jp/php/luasandbox.loadstring.html - [similar]
バイナリのデータを16進表現に変換する 5544
« addslashes chop » PHP Manual String 関数 バイナリのデータを16進表現に変換する bin2hex (PHP 4, ... ます。 例 例1 bin2hex() の例 <?php $hex = bin2hex ( 'Hello world!' ); var_dump ( $hex ); var_dump ( hex2bin ( ... string(24) "48656c6c6f20776f726c6421" string(12) "Hello world!" 参考 hex2bin() - 16進エンコードされたバイナ ...
https://man.plustar.jp/php/function.bin2hex.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT