検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 247 for bar (0.012 sec.)
プロパティの値を設定する 4660
« ReflectionProperty::setAccessible ReflectionProperty::__toString » PHP Manual ReflectionProper ... -> getProperty ( 'property' )-> setValue ( $foo , 'bar' ); var_dump ( $foo -> property ); $reflectionProp ... ue ); $reflectionProperty -> setValue ( $foo , 'foobar' ); var_dump ( $reflectionProperty -> getValue ( $ ... の出力は以下となります。 string(3) "foo" string(3) "bar" string(6) "foobar" 参考 ReflectionProperty::getVa ...
https://man.plustar.jp/php/reflectionproperty.setvalue.html - [similar]
Rolls back a transaction in progress 4660
« Stomp Stomp::ack » PHP Manual Stomp Rolls back a transaction in progress Stomp::abort stomp_ab ... e to the queue */ $stomp -> send ( '/queue/foo' , 'bar' , array( 'transaction' => 't1' )); /* rollback */ ... ueue 'foo' */ stomp_send ( $link , '/queue/foo' , 'bar' , array( 'transaction' => 't1' )); /* rollback */ ...
https://man.plustar.jp/php/stomp.abort.html - [similar]
Commits a transaction in progress 4660
« Stomp::begin Stomp::__construct » PHP Manual Stomp Commits a transaction in progress Stomp::co ... e to the queue */ $stomp -> send ( '/queue/foo' , 'bar' , array( 'transaction' => 't1' )); /* commit */ $ ... ueue 'foo' */ stomp_send ( $link , '/queue/foo' , 'bar' , array( 'transaction' => 't1' )); /* commit */ s ...
https://man.plustar.jp/php/stomp.commit.html - [similar]
英数字かどうかを調べる 4610
« Ctype 関数 ctype_alpha » PHP Manual Ctype 関数 英数字かどうかを調べる ctype_alnum (PHP 4 >= 4. ... を使用) <?php $strings = array( 'AbCd1zyZ9' , 'foo!#$bar' ); foreach ( $strings as $testcase ) { if ( ctype ... onsists of all letters or digits. The string foo!#$bar does not consist of all letters or digits. 参考 ct ...
https://man.plustar.jp/php/function.ctype-alnum.html - [similar]
FDF データを表示する PDF ドキュメントを設定する 4610
« fdf_set_encoding fdf_set_flags » PHP Manual FDF 関数 FDF データを表示する PDF ドキュメントを設 ... / $fdf = fdf_create (); /* "foo" フィールドに、値 "bar" を設定します */ fdf_set_value ( $fdf , "foo" , "b ...
https://man.plustar.jp/php/function.fdf-set-file.html - [similar]
PostgreSQL バックエンドと同期する 4610
« pg_delete pg_escape_bytea » PHP Manual PostgreSQL 関数 PostgreSQL バックエンドと同期する pg_en ... ( "dbname=foo" ); pg_query ( $conn , "create table bar (a int4, b char(16), d float8)" ); pg_query ( $con ... n , "copy bar from stdin" ); pg_put_line ( $conn , "3\thello wor ...
https://man.plustar.jp/php/function.pg-end-copy.html - [similar]
JSON にシリアライズしたいデータを指定する 4610
« JsonSerializable JSON 関数 » PHP Manual JsonSerializable JSON にシリアライズしたいデータを指定 ... { return $this -> array ; } } $array = [ 'foo' => 'bar' , 'quux' => 'baz' ]; echo json_encode (new ArrayV ... INT ); ?> 上の例の出力は以下となります。 { "foo": "bar", "quux": "baz" } 例3 JsonSerializable::jsonSerial ...
https://man.plustar.jp/php/jsonserializable.jsonserialize.html - [similar]
マジック定数 4610
« 自動的に定義される定数 式 » PHP Manual 定数 マジック定数 マジック定数 使われる場所によって値が ... そのクラスが宣言されている名前空間も含みます (例 Foo\Bar )。 トレイトのメソッド内で __CLASS__ を使うと、 そ ... トレイト名には、宣言された名前空間も含みます (例 Foo\Bar )。 __METHOD__ クラスのメソッド名。 __NAMESPACE__ ...
https://man.plustar.jp/php/language.constants.magic.html - [similar]
定数式における列挙型の値 4610
« トレイト オブジェクトとの違い » PHP Manual 列挙型(Enum) 定数式における列挙型の値 定数式における ... } } class Foo { // これは、許されています。 const Bar = Direction :: Down ; // これは、許可されません。結 ... 果の値が保証できない可能性があります。 const Bar = Direction :: Up [ 'short' ]; // Fatal error: Can ...
https://man.plustar.jp/php/language.enumerations.expressions.html - [similar]
オブジェクト 4610
« Iterable 列挙型 / Enum » PHP Manual 型 オブジェクト オブジェクト オブジェクトの初期化 オブジェ ... ction do_foo () { echo "foo を実行します。" ; } } $bar = new foo ; $bar -> do_foo (); ?> 詳細な事項につい ...
https://man.plustar.jp/php/language.types.object.html - [similar]