検索

phrase: max: clip:
target: order:
Results of 171 - 180 of about 418 for Foo (0.081 sec.)
Yaf_Route_Rewrite のコンストラクタ 4131
« Yaf_Route_Rewrite::assemble Yaf_Route_Rewrite::route » PHP Manual Yaf_Route_Rewrite Yaf_Route_ ... のようになります。 /* http://yourdomain.com/product/foo/22/foo/bar * の場合はこのような結果になります */ a ... ラメータは、このようになります */ array( "name" => "foo", "id" => 22, "foo" => bar ) 例2 Yaf_Route_Rewrite ...
https://man.plustar.jp/php/yaf-route-rewrite.construct.html - [similar]
ヘッダ用の関数を登録する 4105
« getservbyport header_remove » PHP Manual ネットワーク 関数 ヘッダ用の関数を登録する header_reg ... ( 'Content-Type: text/plain' ); header ( 'X-Test: foo' ); function foo () { foreach ( headers_list () as ... Test' ); } } $result = header_register_callback ( 'foo' ); echo "a" ; ?> 上の例の出力は、 たとえば以下のよ ...
https://man.plustar.jp/php/function.header-register-callback.html - [similar]
MySQL データベースを選択する 4072
« mysql_result mysql_set_charset » PHP Manual MySQL 関数 MySQL データベースを選択する mysql_sele ... { die( 'Not connected : ' . mysql_error ()); } // foo をカレントの db に指定する $db_selected = mysql_se ... lect_db ( 'foo' , $link ); if (! $db_selected ) { die ( 'Can\'t u ... se foo : ' . mysql_error ()); } ?> 注意 注意 : 下位互換の ...
https://man.plustar.jp/php/function.mysql-select-db.html - [similar]
文字列を出力する 4072
« parse_str printf » PHP Manual String 関数 文字列を出力する print (PHP 4, PHP 5, PHP 7, PHP 8) ... 字列を生成するあらゆる式を指定することができます。 $foo = "example" ; print "foo is $foo " ; // foo is exa ...
https://man.plustar.jp/php/function.print.html - [similar]
Returns a short, readable, parsable string representation of a variable 4072
« var_representation 関数 その他のサービス » PHP Manual var_representation 関数 Returns a short, ... ; } } $a = new A ; $a -> var1 = 5 ; $a -> var2 = 'foo' ; eval( '$b = ' . var_representation ( $a ) . ';' ... = \A::__set_state([ // 'var1' => 5, // 'var2' => 'foo', // ]); var_dump ( $b ); ?> 上の例の出力は以下とな ... A)#2 (2) { ["var1"]=> int(5) ["var2"]=> string(3) "foo" } 参考 var_export() - 変数の文字列表現を出力または ...
https://man.plustar.jp/php/function.var-representation.html - [similar]
型宣言 4072
« コールバック / Callable 型の相互変換 » PHP Manual 型 型宣言 型宣言 関数のパラメータや戻り値、 ... ができますが、 正しい union 型です。 <?php function foo (): int | INT {} // 許されません function foo (): ... bool | false {} // 許されません function foo (): int & Traversable {} // 許されません function ... aversable {} // 許されません use A as B ; function foo (): A | B {} // 許されません ("use" は名前解決の一 ... 部です) function foo (): A & B {} // 許されません ("use" は名前解決の一 ...
https://man.plustar.jp/php/language.types.declarations.html - [similar]
Returns the Binary's data 4072
« MongoDB\BSON\Binary::__construct MongoDB\BSON\Binary::getType » PHP Manual MongoDB\BSON\Binary ... ple <?php $binary = new MongoDB \ BSON \ Binary ( 'foo' , MongoDB \ BSON \ Binary :: TYPE_GENERIC ); var_ ... ()); ?> 上の例の出力は以下となります。 string(3) "foo" 参考 » BSON Types 関連キーワード: Returns , data ...
https://man.plustar.jp/php/mongodb-bson-binary.getdata.html - [similar]
Returns the Javascript's code 4072
« MongoDB\BSON\Javascript::__construct MongoDB\BSON\Javascript::getScope » PHP Manual MongoDB\BS ... $js = new MongoDB \ BSON \ Javascript ( 'function foo(bar) { return bar; }' ); var_dump ( $js -> getCode ... 上の例の出力は以下となります。 string(33) "function foo(bar) { return bar; }" 参考 » BSON Types 関連キーワ ...
https://man.plustar.jp/php/mongodb-bson-javascript.getcode.html - [similar]
match 4046
« switch declare » PHP Manual 制御構造 match match (PHP 8) match 式は、値の一致をチェックした結果 ... 返却式 , }; ?> 例2 基本式な match 式の使い方 <?php $food = 'cake' ; $return_value = match ( $food ) { 'app ... le' => 'This food is an apple' , 'bar' => 'This food is a bar' , 'c ... ake' => 'This food is a cake' , }; var_dump ( $return_value ); ?> 上 ... の例の出力は以下となります。 string(19) "This food is a cake" 注意 : match 式の結果は、必ずしも使う必 ...
https://man.plustar.jp/php/control-structures.match.html - [similar]
Gets the static variables from function or method scope 4046
« uopz_get_return uopz_implement » PHP Manual Uopz 関数 Gets the static variables from function ... 例 例1 Basic uopz_get_static() Usage <?php function foo () { static $bar = 'baz' ; } var_dump ( uopz_get_s ... tatic ( 'foo' )); ?> 上の例の出力は以下となります。 array(1) { ...
https://man.plustar.jp/php/function.uopz-get-static.html - [similar]