検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 313 for exists (0.012 sec.)
オブジェクトもしくはクラスにプロパティが存在するかどうかを調べる 9675
« method_exists trait_exists » PHP Manual クラス/オブジェクト関数 オブジェクトもしくはクラスにプ ... ロパティが存在するかどうかを調べる property_exists (PHP 5 >= 5.1.0, PHP 7, PHP 8) property_exists — オ ... にプロパティが存在するかどうかを調べる 説明 property_exists ( object | string $object_or_class , string $prope ... 対照的に、 プロパティの値が null の場合でも property_exists() は true を返します。 パラメータ object_or_class ... 、 エラー時には null を返します。 例 例1 property_exists() の例 <?php class myClass { public $mine ; privat ...
https://man.plustar.jp/php/function.property-exists.html - [similar]
クラスが定義済みかどうかを確認する 9153
« class_alias enum_exists » PHP Manual クラス/オブジェクト関数 クラスが定義済みかどうかを確認する ... class_exists (PHP 4, PHP 5, PHP 7, PHP 8) class_exists — クラス ... が定義済みかどうかを確認する 説明 class_exists ( string $class , bool $autoload = true ): bool こ ... 、 それ以外の場合に false を返します。 例 例1 class_exists() の例 <?php // クラスを使用する前に、それが存在す ... るかどうかを調べます if ( class_exists ( 'MyClass' )) { $myclass = new MyClass (); } ?> 例 ...
https://man.plustar.jp/php/function.class-exists.html - [similar]
列挙型が定義されているかを調べる 9153
« class_exists get_called_class » PHP Manual クラス/オブジェクト関数 列挙型が定義されているかを調 ... べる enum_exists (PHP 8 >= 8.1.0) enum_exists — 列挙型が定義されてい ... るかを調べる 説明 enum_exists ( string $enum , bool $autoload = true ): bool この ... す。そうでない場合、 false を返します。 例 例1 enum_exists() の例 <?php // Check that the enum exists before ... trying to use it if ( enum_exists ( Suit ::class)) { $myclass = Suit :: Hearts ; } ? ...
https://man.plustar.jp/php/function.enum-exists.html - [similar]
指定したキーまたは添字が配列にあるかどうかを調べる 9013
« array_is_list array_key_first » PHP Manual 配列 関数 指定したキーまたは添字が配列にあるかどうか ... を調べる array_key_exists (PHP 4 >= 4.0.7, PHP 5, PHP 7, PHP 8) array_key_ex ... たは添字が配列にあるかどうかを調べる 説明 array_key_exists ( string | int $key , array $array ): bool 指定した ... key が配列に設定されている場合、 array_key_exists() は true を返します。 key は配列添字として使用でき ... 、失敗した場合に false を返します。 注意 : array_key_exists() は、最初のレベルのキーだけを捜します。 多次元配列 ...
https://man.plustar.jp/php/function.array-key-exists.html - [similar]
array_key_exists のエイリアス 8882
« in_array key » PHP Manual 配列 関数 array_key_exists のエイリアス key_exists (PHP 4 >= 4.0.6, ... PHP 5, PHP 7, PHP 8) key_exists — array_key_exists() のエイリアス 説明 この関数は次 ... の関数のエイリアスです。 array_key_exists() 関連キーワード: key , exists , array , 関数 , 配 ...
https://man.plustar.jp/php/function.key-exists.html - [similar]
エントリが存在するかどうかを調べる 8715
« apcu_entry apcu_fetch » PHP Manual APCu 関数 エントリが存在するかどうかを調べる apcu_exists (P ... ECL apcu >= 4.0.0) apcu_exists — エントリが存在するかどうかを調べる 説明 apcu_exi ... れも存在しない場合は空の配列を返します。 例 例1 apcu_exists() の例 <?php $fruit = 'apple' ; $veggie = 'carrot' ... fruit ); apcu_store ( 'bar' , $veggie ); if ( apcu_exists ( 'foo' )) { echo "Foo exists: " ; echo apcu_fetch ... "Foo does not exist" ; } echo PHP_EOL ; if ( apcu_exists ( 'baz' )) { echo "Baz exists." ; } else { echo "B ...
https://man.plustar.jp/php/function.apcu-exists.html - [similar]
クラスメソッドが存在するかどうかを確認する 8668
« is_subclass_of property_exists » PHP Manual クラス/オブジェクト関数 クラスメソッドが存在するか ... どうかを確認する method_exists (PHP 4, PHP 5, PHP 7, PHP 8) method_exists — クラス ... メソッドが存在するかどうかを確認する 説明 method_exists ( object | string $object_or_class , string $metho ... 、そうでない場合に false を返します。 例 例1 method_exists() の例 <?php $directory = new Directory ( '.' ); v ... ar_dump ( method_exists ( $directory , 'read' )); ?> 上の例の出力は以下とな ...
https://man.plustar.jp/php/function.method-exists.html - [similar]
Checks the existence of a node in zookeeper synchronously 8584
« Zookeeper::delete Zookeeper::get » PHP Manual Zookeeper Checks the existence of a node in zook ... eeper synchronously Zookeeper::exists (PECL zookeeper >= 0.1.0) Zookeeper::exists — Chec ... in zookeeper synchronously 説明 public Zookeeper::exists ( string $path , callable $watcher_cb = null ): ar ... s the value of stat for the path if the given node exists, otherwise false. エラー / 例外 This method emits ... rException and it's derivatives. 例 例1 Zookeeper::exists() example Check the existence of a node. <?php $zo ...
https://man.plustar.jp/php/zookeeper.exists.html - [similar]
Check if offet exists. 8016
« Swoole\Connection\Iterator::next Swoole\Connection\Iterator::offsetGet » PHP Manual Swoole\Con ... nection\Iterator Check if offet exists. Swoole\Connection\Iterator::offsetExists (PECL sw ... oole >= 1.9.0) Swoole\Connection\Iterator::offsetExists — Check if offet exists. 説明 public Swoole\Connec ... tion\Iterator::offsetExists ( int $index ): bool Check if offset exists. パラメ ... t being checked. 戻り値 Returns TRUE if the offset exists, otherwise FALSE. 関連キーワード: exists , Check , ...
https://man.plustar.jp/php/swoole-connection-iterator.offsetexists.html - [similar]
インターフェイスが宣言されているかどうかを確認する 7531
« get_parent_class is_a » PHP Manual クラス/オブジェクト関数 インターフェイスが宣言されているかど ... うかを確認する interface_exists (PHP 5 >= 5.0.2, PHP 7, PHP 8) interface_exists... スが宣言されているかどうかを確認する 説明 interface_exists ( string $interface , bool $autoload = true ): boo ... そうでなければ false を返します。 例 例1 interface_exists() の例 <?php // 使用する前にインターフェイスが存在 ... するかどうかを確認する if ( interface_exists ( 'MyInterface' )) { class MyClass implements MyIn ...
https://man.plustar.jp/php/function.interface-exists.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT