検索

phrase: max: clip:
target: order:
Results of 231 - 240 of about 418 for Foo (0.016 sec.)
プロパティがコンストラクタの引数から昇格したものかを調べる 3920
« ReflectionProperty::isPrivate ReflectionProperty::isProtected » PHP Manual ReflectionProperty ... ReflectionProperty::isPromoted() の例 <?php class Foo { public $baz ; public function __construct (publi ... c $bar ) {} } $o = new Foo ( 42 ); $o -> baz = 42 ; $ro = new ReflectionObjec ...
https://man.plustar.jp/php/reflectionproperty.ispromoted.html - [similar]
パラメータを変数にバインドする 3920
« SQLite3Stmt SQLite3Stmt::bindValue » PHP Manual SQLite3Stmt パラメータを変数にバインドする SQL ... QLite3 ( ':memory:' ); $db -> exec ( "CREATE TABLE foo (bar TEXT)" ); $stmt = $db -> prepare ( "INSERT IN ... TO foo VALUES (:bar)" ); $stmt -> bindParam ( ':bar' , $b ... > execute (); $res = $db -> query ( "SELECT * FROM foo" ); while (( $row = $res -> fetchArray ( SQLITE3_A ...
https://man.plustar.jp/php/sqlite3stmt.bindparam.html - [similar]
Gets the last stomp error 3920
« Stomp::__destruct Stomp::getReadTimeout » PHP Manual Stomp Gets the last stomp error Stomp::er ... ort ( 'unknown-transaction' , array( 'receipt' => 'foo' ))) { var_dump ( $stomp -> error ()); } /* close ... ink , 'unknown-transaction' , array( 'receipt' => 'foo' ))) { var_dump ( stomp_error ( $link )); } /* clo ...
https://man.plustar.jp/php/stomp.error.html - [similar]
リクエストをルーティングする 3920
« Yaf_Route_Static::match Yaf_Route_Supervar » PHP Manual Yaf_Route_Static リクエストをルーティン ... default(index) Request: http://yourdomain.com/a/b/foo/bar/test/a/id/4 => module = default(index), contro ... ller = a, action = b, request parameters: foo = bar, test = a, id = 4 参考 Yaf_Route_Supervar::r ...
https://man.plustar.jp/php/yaf-route-static.route.html - [similar]
文字列を文字列により分割する 3886
« echo fprintf » PHP Manual String 関数 文字列を文字列により分割する explode (PHP 4, PHP 5, PHP ... ce1 echo $pieces [ 1 ]; // piece2 // 例 2 $data = "foo:*:1023:1000::/home/foo:/bin/sh" ; list( $user , $p ... shell ) = explode ( ":" , $data ); echo $user ; // foo echo $pass ; // * ?> 例2 explode() の戻り値の例 <? ...
https://man.plustar.jp/php/function.explode.html - [similar]
指定したオブジェクトのプロパティを取得する 3886
« get_mangled_object_vars get_parent_class » PHP Manual クラス/オブジェクト関数 指定したオブジェ ... ます。 例 例1 get_object_vars() の使用例 <?php class foo { private $a ; public $b = 1 ; public $c ; private ... dump ( get_object_vars ( $this )); } } $test = new foo ; var_dump ( get_object_vars ( $test )); $test -> ...
https://man.plustar.jp/php/function.get-object-vars.html - [similar]
改行文字の前に HTML の改行タグを挿入する 3886
« nl_langinfo number_format » PHP Manual String 関数 改行文字の前に HTML の改行タグを挿入する nl ... します。 例 例1 nl2br() の使用法 <?php echo nl2br ( "foo isn't\n bar" ); ?> 上の例の出力は以下となります。 ...
https://man.plustar.jp/php/function.nl2br.html - [similar]
SNMP オブジェクトの値を設定する 3886
« snmp3_real_walk snmp3_walk » PHP Manual SNMP 関数 SNMP オブジェクトの値を設定する snmp3_set (P ... 'AES' , 'secret007' , 'IF-MIB::ifAlias.3' , 's' , "foo" ); ?> 例2 BITS SNMP オブジェクト ID を設定した sn ... iv' , 'SHA' , 'secret007' , 'AES' , 'secret007' , 'FOO-MIB::bar.42' , 'b' , '0 1 2 3 4' ); // あるいは sn ... iv' , 'SHA' , 'secret007' , 'AES' , 'secret007' , 'FOO-MIB::bar.42' , 'x' , 'F0' ); ?> 関連キーワード: オ ...
https://man.plustar.jp/php/function.snmp3-set.html - [similar]
はじめに 3886
« Filter インストール/設定 » PHP Manual Filter はじめに はじめに この拡張モジュールは、データの検 ... _PATH_REQUIRED を渡すと、パス ( http://example.org/foo における /foo など) を必須とすることができます。 関 ...
https://man.plustar.jp/php/intro.filter.html - [similar]
コンストラクタとデストラクタ 3886
« クラスのオートローディング アクセス権 » PHP Manual クラスとオブジェクト コンストラクタとデスト ... 使う <?php // 以下は全て許可されます static $x = new Foo ; const C = new Foo ; function test ( $param = new ... Foo ) {} #[AnAttribute(new Foo)] class Test { public f ... unction __construct ( public $prop = new Foo , ) {} } // 以下はいずれも許されません(コンパイルエ ...
https://man.plustar.jp/php/language.oop5.decon.html - [similar]