検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 247 for bar (0.098 sec.)
キーを指定して、配列を値で埋める 4801
« array_diff array_fill » PHP Manual 配列 関数 キーを指定して、配列を値で埋める array_fill_keys ... keys() の例 <?php $keys = array( 'foo' , 5 , 10 , 'bar' ); $a = array_fill_keys ( $keys , 'banana' ); pri ... ay ( [foo] => banana [5] => banana [10] => banana [bar] => banana ) 参考 array_fill() - 配列を指定した値で ...
https://man.plustar.jp/php/function.array-fill-keys.html - [similar]
引数のリストから要素をひとつ返す 4801
« forward_static_call func_get_args » PHP Manual 関数処理 関数 引数のリストから要素をひとつ返す ... _export ( func_get_arg ( 0 )), PHP_EOL ; } $arg = 'bar' ; byVal ( $arg ); byRef ( $arg ); ?> 上の例の出力 ... は以下となります。 As passed : 'bar' After change : 'baz' As passed : 'bar' After chan ...
https://man.plustar.jp/php/function.func-get-arg.html - [similar]
Basic Gearman client and worker, submitting tasks 4801
« Basic Gearman client and worker, background GearmanClient » PHP Manual 例 Basic Gearman client ... some arbitrary application data $data [ 'foo' ] = 'bar' ; # add two tasks $task = $gmc -> addTask ( "reve ... data ); $task2 = $gmc -> addTaskLow ( "reverse" , "bar" , NULL ); # run the tasks in parallel (assuming m ... Result: oof Received job: H:foo.local:44 Workload: bar (3) 1/3 complete 2/3 complete 3/3 complete Result: ...
https://man.plustar.jp/php/gearman.examples-reverse-task.html - [similar]
例外をジェネレータにスローする 4801
« Generator::send Generator::valid » PHP Manual Generator 例外をジェネレータにスローする Generat ... o "Exception: { $e -> getMessage ()} \n" ; } echo "Bar\n" ; } $gen = gen (); $gen -> rewind (); $gen -> t ... 上の例の出力は以下となります。 Foo Exception: Test Bar 関連キーワード: 例外 , スロー , Generator , throw ...
https://man.plustar.jp/php/generator.throw.html - [similar]
Construct a new Javascript 4801
« MongoDB\BSON\Javascript MongoDB\BSON\Javascript::getCode » PHP Manual MongoDB\BSON\Javascript ... cript ( 'function() { return foo; }' , [ 'foo' => 'bar' ]); var_dump ( $codews ); ?> 上の例の出力は以下と ... "]=> object(stdClass)#1 (1) { ["foo"]=> string(3) "bar" } } 参考 » BSON Types 関連キーワード: BSON , Java ...
https://man.plustar.jp/php/mongodb-bson-javascript.construct.html - [similar]
Constructs the object from a BSON array or document 4801
« MongoDB\BSON\Unserializable MongoDB\BSON\BinaryInterface » PHP Manual MongoDB\BSON\Unserializa ... } } $bson = MongoDB \ BSON \ fromJSON ( '{ "foo": "bar" }' ); $value = MongoDB \ BSON \ toPHP ( $bson , [ ... cument":private]=> array(1) { ["foo"]=> string(3) "bar" } } 参考 MongoDB\BSON\Serializable::bsonSerialize ...
https://man.plustar.jp/php/mongodb-bson-unserializable.bsonunserialize.html - [similar]
ドキュメントコメントを取得する 4801
« ReflectionClass::getDefaultProperties ReflectionClass::getEndLine » PHP Manual ReflectionClass ... ent() の例 <?php /** * A test class * * @param foo bar * @return baz */ class TestClass { } $rc = new Ref ... ます。 string(55) "/** * A test class * * @param foo bar * @return baz */" 参考 ReflectionClass::getName() ...
https://man.plustar.jp/php/reflectionclass.getdoccomment.html - [similar]
指定したデータベースに、結果を返さないクエリを実行する 4801
« SQLite3::escapeString SQLite3::lastErrorCode » PHP Manual SQLite3 指定したデータベースに、結果 ... 3 ( 'mysqlitedb.db' ); $db -> exec ( 'CREATE TABLE bar (bar TEXT)' ); ?> 関連キーワード: 実行 , データベー ...
https://man.plustar.jp/php/sqlite3.exec.html - [similar]
FDF ドキュメントを文字列として返す 4761
« fdf_remove_item fdf_save » PHP Manual FDF 関数 FDF ドキュメントを文字列として返す fdf_save_str ... f = fdf_create (); fdf_set_value ( $fdf , "foo" , "bar" ); $str = fdf_save_string ( $fdf ); fdf_close ( $ ... Fields 2 0 R >> >> endobj 2 0 obj [ << /T (foo)/V (bar)>> ] endobj trailer << /Root 1 0 R >> %%EOF 参考 f ...
https://man.plustar.jp/php/function.fdf-save-string.html - [similar]
関数の引数リストを配列として返す 4761
« func_get_arg func_num_args » PHP Manual 関数処理 関数 関数の引数リストを配列として返す func_ge ... ar_export ( func_get_args ()), PHP_EOL ; } $arg = 'bar' ; byVal ( $arg ); byRef ( $arg ); ?> 上の例の出力 ... は以下となります。 As passed : array ( 0 => 'bar', ) After change : array ( 0 => 'baz', ) As passed ... : array ( 0 => 'bar', ) After change : array ( 0 => 'baz', ) 注意 注意 ...
https://man.plustar.jp/php/function.func-get-args.html - [similar]