Results of 1 - 10 of about 88 for obj (0.010 sec.)
- オフセットが存在するかどうか 12654
- « ArrayAccess ArrayAccess::offsetGet » PHP Manual ArrayAccess オフセットが存在するかどうか Array
...
例 例1 ArrayAccess::offsetExists() の例 <?php class obj implements arrayaccess { public function offsetSet ...
) { var_dump ( __METHOD__ ); return "value" ; } } $obj = new obj ; echo "Runs obj::offsetExists()\n" ; va ...
r_dump (isset( $obj [ "foobar" ])); echo "\nRuns obj::offsetExists() a ...
nd obj::offsetGet()\n" ; var_dump (empty( $obj [ "foobar" ...
-
https://man.plustar.jp/php/arrayaccess.offsetexists.html
- [similar]
- ArrayAccess インターフェイス 11957
- « Throwable::__toString ArrayAccess::offsetExists » PHP Manual 定義済みのインターフェイスとクラス
...
d $offset ): void } 例1 基本的な使用法 <?php class Obj implements ArrayAccess { private $container = arra ...
]) ? $this -> container [ $offset ] : null ; } } $obj = new Obj ; var_dump (isset( $obj [ "two" ])); var ...
_dump ( $obj [ "two" ]); unset( $obj [ "two" ]); var_dump (isse ...
t( $obj [ "two" ])); $obj [ "two" ] = "A value" ; var_dump ...
-
https://man.plustar.jp/php/class.arrayaccess.html
- [similar]
- 変数のスコープ 10469
- « 定義済みの変数 可変変数 » PHP Manual 変数 変数のスコープ 変数のスコープ 変数のスコープは、その
...
ります。 <?php function test_global_ref () { global $obj ; $new = new stdclass ; $obj = & $new ; } function ...
test_global_noref () { global $obj ; $new = new stdclass ; $obj = $new ; } test_globa ...
l_ref (); var_dump ( $obj ); test_global_noref (); var_dump ( $obj ); ?> 上の ...
例の出力は以下となります。 NULL object(stdClass)#1 (0) { } 類似の動作が static 命令にも ...
-
https://man.plustar.jp/php/language.variables.scope.html
- [similar]
- サーバーから項目を取得する 9396
- « Memcache::flush Memcache::getExtendedStats » PHP Manual Memcache サーバーから項目を取得する Me
...
e::get() の例 <?php /* 手続き型の API */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); $v ...
ar = memcache_get ( $memcache_obj , 'some_key' ); /* オブジェクト指向の API */ $memc ...
ache_obj = new Memcache ; $memcache_obj -> connect ( 'memca ...
che_host' , 11211 ); $var = $memcache_obj -> get ( 'some_key' ); /* キーの配列をパラメータと ...
-
https://man.plustar.jp/php/memcache.get.html
- [similar]
- For Each 8485
- « 例 配列と配列形式の COM プロパティ » PHP Manual 例 For Each For Each 標準的な COM/OLE IEnumVar
...
意味します。 例1 ASP における For Each <% Set domainObject = GetObject("WinNT://Domain") For Each obj in d ...
omainObject Response.Write obj.Name & "<br />" Next %> 例2 ...
PHP 5 における foreach <?php $domainObject = new COM ( "WinNT://Domain" ); foreach ( $doma ...
inObject as $obj ) { echo $obj -> Name . "<br />" ; } ?> ...
-
https://man.plustar.jp/php/com.examples.foreach.html
- [similar]
- ReflectionProperty オブジェクトを作成する 8485
- « ReflectionProperty::__clone ReflectionProperty::export » PHP Manual ReflectionProperty Reflect
...
成する 説明 public ReflectionProperty::__construct ( object | string $class , string $property ) パラメータ ...
ers ()), 1 ) ); // Str のインスタンスを作成します $obj = new Str (); // 現在の値を取得します printf ( "-- ...
-> Value is: " ); var_dump ( $prop -> getValue ( $obj )); // 値を変更します $prop -> setValue ( $obj , 1 ...
new value is: " ); var_dump ( $prop -> getValue ( $obj )); // オブジェクトを出力します var_dump ( $obj ); ...
-
https://man.plustar.jp/php/reflectionproperty.construct.html
- [similar]
- オーバーロード 8270
- « 無名クラス オブジェクトの反復処理 » PHP Manual クラスとオブジェクト オーバーロード オーバーロー
...
理する方法によるものです。 同様に __get() は、 $a = $obj->b = 8; のように代入と連結した場合には決してコール ...
) { return $this -> hidden ; } } echo "<pre>\n" ; $obj = new PropertyTest ; $obj -> a = 1 ; echo $obj -> ...
a . "\n\n" ; var_dump (isset( $obj -> a )); unset( $obj -> a ); var_dump (isset( $obj ...
-> a )); echo "\n" ; echo $obj -> declared . "\n\n" ; echo "Let's experiment with ...
-
https://man.plustar.jp/php/language.oop5.overloading.html
- [similar]
- 変数がオブジェクトかどうかを検査する 8002
- « is_numeric is_real » PHP Manual 変数操作 関数 変数がオブジェクトかどうかを検査する is_object (
...
PHP 4, PHP 5, PHP 7, PHP 8) is_object — 変数がオブジェクトかどうかを検査する 説明 is_ ...
パラメータ value 評価する変数。 戻り値 もし value が object 型 の場合 true 、 そうでない場合は false を返し ...
シリアライズ化されていないオブジェクトに対して、 is_object() 関数は true を返すようになりました。 これより ...
バージョンでは、 false を返していました。 例 例1 is_object() の例 <?php // オブジェクトから配列を返す // シ ...
-
https://man.plustar.jp/php/function.is-object.html
- [similar]
- 例 7841
- « 定義済み定数 クラス/オブジェクト関数 » PHP Manual クラス/オブジェクト 例 例 この例では、まず基
...
_autoload_register (); function printProperties ( $obj ) { foreach ( get_object_vars ( $obj ) as $prop => ...
\t $prop = $val \n" ; } } function printMethods ( $obj ) { $arr = get_class_methods ( get_class ( $obj )) ...
) { echo "\tfunction $method ()\n" ; } } function objectBelongsTo ( $obj , $class ) { if ( is_subclass_o ...
f ( $obj , $class )) { echo "Object belongs to class " . ge ...
-
https://man.plustar.jp/php/classobj.examples.html
- [similar]
- 第一級callableを生成する記法 7841
- « アロー関数 クラスとオブジェクト » PHP Manual 関数 第一級callableを生成する記法 第一級callableを
...
aticmethod () {} public function __invoke () {} } $obj = new Foo (); $classStr = 'Foo' ; $methodStr = 'me ...
dStr = 'staticmethod' ; $f1 = strlen (...); $f2 = $obj (...); // 呼び出し可能オブジェクト $f3 = $obj -> m ...
ethod (...); $f4 = $obj -> $methodStr (...); $f5 = Foo :: staticmethod (.. ...
列を使った、古い記法 $f7 = 'strlen' (...); $f8 = [ $obj , 'method' ](...); $f9 = [ Foo ::class, 'staticmet ...
-
https://man.plustar.jp/php/functions.first_class_callable_syntax.html
- [similar]