検索

phrase: max: clip:
target: order:
Results of 191 - 200 of about 418 for Foo (0.013 sec.)
xhprof プロファイラを終了する 4013
« Xhprof 関数 xhprof_enable » PHP Manual Xhprof 関数 xhprof プロファイラを終了する xhprof_disabl ... 例1 xhprof_disable() の例 <?php xhprof_enable (); $foo = strlen ( "foo bar" ); $xhprof_data = xhprof_disa ...
https://man.plustar.jp/php/function.xhprof-disable.html - [similar]
定数 4013
« 外部から来る変数 構文 » PHP Manual 言語リファレンス 定数 定数 目次 構文 自動的に定義される定数 ... 効/無効な定数名の例 <?php // 有効な定数名 define ( "FOO" , "something" ); define ( "FOO2" , "something els ... e" ); define ( "FOO_BAR" , "something more" ); // 無効な定数名 define ... ( "2FOO" , "something" ); // 有効だが、避けるべき。 // 将来 ... スクリプトが動作しなくなる可能性がある define ( "__FOO__" , "something" ); ?> 注意 : 本節の目的においては ...
https://man.plustar.jp/php/language.constants.html - [similar]
URLを組み立てる 4013
« Yaf_Route_Rewrite Yaf_Route_Rewrite::__construct » PHP Manual Yaf_Route_Rewrite URLを組み立てる ... >getRoute('rewrite')->assemble( array( ':name' => 'foo', ':id' => 'bar', ':tmpkey1' => 'tmpval1' ), array ... たとえば以下のようになります。 string(57) "/product/foo/bar/tmpkey1/tmpval1/?tkey1=tval1&tkey2=tval2" 関連 ...
https://man.plustar.jp/php/yaf-route-rewrite.assemble.html - [similar]
代入した値をクリアする 4013
« Yaf_View_Simple::assignRef Yaf_View_Simple::__construct » PHP Manual Yaf_View_Simple 代入した値 ... on indexAction () { $this -> getView ()-> clear ( "foo" )-> clear ( "bar" ); // "foo" と "bar" をクリアし ...
https://man.plustar.jp/php/yaf-view-simple.clear.html - [similar]
URL を解釈し、その構成要素を返す 3979
« http_build_query rawurldecode » PHP Manual URL 関数 URL を解釈し、その構成要素を返す parse_url ... あることを以下のように区別します: http://example.com/foo → query = null, fragment = null http://example.com ... /foo? → query = "", fragment = null http://example.com/ ... # → query = null, fragment = "" http://example.com/foo?# → query = "", fragment = "" 8.1.0 より前のバージ ...
https://man.plustar.jp/php/function.parse-url.html - [similar]
URL エンコードされた文字列をデコードする 3979
« parse_url rawurlencode » PHP Manual URL 関数 URL エンコードされた文字列をデコードする rawurlde ... 例1 rawurldecode() の例 <?php echo rawurldecode ( 'foo%20bar%40baz' ); // foo bar@baz ?> 注意 注意 : rawu ...
https://man.plustar.jp/php/function.rawurldecode.html - [similar]
指定したマスク内に含まれる文字からなる文字列の最初のセグメントの長さを探す 3979
« strrpos strstr » PHP Manual String 関数 指定したマスク内に含まれる文字からなる文字列の最初のセ ... askのどの文字とも一致しません var_dump ( strspn ( "foo" , "o" )); // subject のオフセット 1 から 2 文字を ... 調べます var_dump ( strspn ( "foo" , "o" , 1 , 2 )); // subject のオフセット 1 から ... 1 文字を調べます var_dump ( strspn ( "foo" , "o" , 1 , 1 )); ?> 上の例の出力は以下となります ...
https://man.plustar.jp/php/function.strspn.html - [similar]
Adds non-existent function or method 3979
« Uopz 関数 uopz_allow_exit » PHP Manual Uopz 関数 Adds non-existent function or method uopz_add ... pz_add_function() Usage <?php uopz_add_function ( 'foo' , function () {echo 'bar' ;}); foo (); ?> 上の例の ...
https://man.plustar.jp/php/function.uopz-add-function.html - [similar]
変数のスコープ 3979
« 定義済みの変数 可変変数 » PHP Manual 変数 変数のスコープ 変数のスコープ 変数のスコープは、その ... ーになります。 例7 static 変数の宣言 <?php function foo (){ static $int = 0 ; // 正しい static $int = 1 + ... 継承されたメソッドのstatic 変数を使う <?php class Foo { public static function counter () { static $coun ... ounter ++; return $counter ; } } class Bar extends Foo {} var_dump ( Foo :: counter ()); // int(1) var_du ... mp ( Foo :: counter ()); // int(2) var_dump ( Bar :: counte ...
https://man.plustar.jp/php/language.variables.scope.html - [similar]
最後に実行した操作の結果を説明したメッセージを返す。 3979
« Memcached::getResultCode Memcached::getServerByKey » PHP Manual Memcached 最後に実行した操作の ... -> addServer ( 'localhost' , 11211 ); $m -> add ( 'foo' , 'bar' ); // first time should succeed $m -> add ... ( 'foo' , 'bar' ); echo $m -> getResultMessage (), "\n" ; ...
https://man.plustar.jp/php/memcached.getresultmessage.html - [similar]