検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 1190 for CLASS (0.007 sec.)
以前に設定したモックを削除する 4633
« uopz_unset_hook uopz_unset_return » PHP Manual Uopz 関数 以前に設定したモックを削除する uopz_u ... したモックを削除する 説明 uopz_unset_mock ( string $class ): void 以前に class で設定したモックを削除します。 ... パラメータ class モックで代替されているクラス。 戻り値 値を返しませ ... ん。 エラー / 例外 class で指定されたモックが見つからない場合、 RuntimeExce ... スローされます。 例 例1 uopz_unset_mock() の例 <?php class A { public static function who () { echo "A" ; } } ...
https://man.plustar.jp/php/function.uopz-unset-mock.html - [similar]
"遅延静的束縛" のクラス名 4530
« enum_exists get_class_methods » PHP Manual クラス/オブジェクト関数 "遅延静的束縛" のクラス名 g ... et_called_class (PHP 5 >= 5.3.0, PHP 7, PHP 8) get_called_class... "遅延静的束縛" のクラス名 説明 get_called_class (): string staticメソッドのコール元のクラス名を取得 ... ルされた場合は false を返します。 例 例1 get_called_class() の使用法 <?php class foo { static public functio ... n test () { var_dump ( get_called_class ()); } } class bar extends foo { } foo :: test (); ...
https://man.plustar.jp/php/function.get-called-class.html - [similar]
あるオブジェクトが指定したクラスのサブクラスに属するか (あるいは指定したインター... 4507
« is_a method_exists » PHP Manual クラス/オブジェクト関数 あるオブジェクトが指定したクラスのサブ ... ンターフェイスを実装しているか) どうかを調べる is_subclass_of (PHP 4, PHP 5, PHP 7, PHP 8) is_subclass_of — あ ... フェイスを実装しているか) どうかを調べる 説明 is_subclass_of ( mixed $object_or_class , string $class , bool ... $allow_string = true ): bool 指定した object_or_class が、その親のひとつに class を持つか (あるいは clas ... しているか) どうかを調べます。 パラメータ object_or_class クラス名あるいはオブジェクトのインスタンス。 そのク ...
https://man.plustar.jp/php/function.is-subclass-of.html - [similar]
Serialization to BSON 4507
« Persisting Data Deserialization from BSON » PHP Manual Persisting Data Serialization to BSON S ... side a document. Objects If an object is of the stdClass class, serialize as a BSON document . If an object ... is a supported class that implements MongoDB\BSON\Type , then use the B ... pectedValueException If an object is of an unknown class implementing the MongoDB\BSON\Type interface, then ... xpectedValueException If an object is of any other class, without implementing any special interface, seria ...
https://man.plustar.jp/php/mongodb.persistence.serialization.html - [similar]
クラスのエイリアスを作成する 4489
« __autoload class_exists » PHP Manual クラス/オブジェクト関数 クラスのエイリアスを作成する class ... s_alias (PHP 5 >= 5.3.0, PHP 7, PHP 8) class_alias — クラスのエイリアスを作成する 説明 class_al ... ias ( string $class , string $alias , bool $autoload = true ): bool al ... as という名前のエイリアスを、 ユーザー定義のクラス class に対して作成します。 エイリアスは、元のクラスとまっ ... たく同一のものとなります。 パラメータ class 元となるクラス。 alias クラスのエイリアス名。 auto ...
https://man.plustar.jp/php/function.class-alias.html - [similar]
型演算子 4489
« 配列演算子 制御構造 » PHP Manual 演算子 型演算子 型演算子 instanceof を使用して、 ある PHP 変数 ... 調べます。 例1 クラスでの instanceof の使用法 <?php class MyClass { } class NotMyClass { } $a = new MyClass ... ; var_dump ( $a instanceof MyClass ); var_dump ( $a instanceof NotMyClass ); ?> 上の例 ... 。 例2 継承したクラスでの instanceof の使用法 <?php class ParentClass { } class MyClass extends ParentClass ... { } $a = new MyClass ; var_dump ( $a instanceof MyClass ); var_dump ( $ ...
https://man.plustar.jp/php/language.operators.type.html - [similar]
定義済み定数 4489
« リソース型 Uopz 関数 » PHP Manual uopz 定義済み定数 定義済み定数 以下の定数が定義されています。 ... int ) Invoked by object construction, receives the class of object being created as the only argument ZEND_ ... int ) Invoked by the throw construct, receives the class of exception being thrown as the only argument ZEN ... D_FETCH_CLASS ( int ) Invoked upon composure, receives the class ... the name of the class being fetched as the only argument ZEND_ADD_TRAIT ...
https://man.plustar.jp/php/uopz.constants.html - [similar]
LuaSandbox 4466
« LuaClosure::__invoke はじめに » PHP Manual その他の基本モジュール LuaSandbox LuaSandbox はじめ ... c usage for LuaSandbox LuaSandbox — The LuaSandbox class LuaSandbox::callFunction — Call a function in a Lu ... nction LuaSandboxFunction — The LuaSandboxFunction class LuaSandboxFunction::call — Call a Lua function Lua ... binary blob LuaSandboxError — The LuaSandboxError class LuaSandboxErrorError — The LuaSandboxErrorError cl ... ss LuaSandboxFatalError — The LuaSandboxFatalError class LuaSandboxMemoryError — The LuaSandboxMemoryError ...
https://man.plustar.jp/php/book.luasandbox.html - [similar]
実行時にインターフェイスを実装させる 4466
« uopz_get_static uopz_overload » PHP Manual Uopz 関数 実行時にインターフェイスを実装させる uopz ... ーフェイスを実装させる 説明 uopz_implement ( string $class , string $interface ): bool class に interface を実 ... 装させます。 パラメータ class interface 戻り値 成功した場合に true を、失敗した場 ... 7.4.0 以降では、 OPcache が有効になっており、 かつ class のエントリが変更不能な場合、 uopz_implements() 関数 ... pz_implement() の例 <?php interface myInterface {} class myClass {} uopz_implement ( myClass ::class, myInt ...
https://man.plustar.jp/php/function.uopz-implement.html - [similar]
テキスト処理 4449
« SessionUpdateTimestampHandlerInterface::validateId CommonMark » PHP Manual 関数リファレンス テ ... nterface CommonMark\Parser — The CommonMark\Parser class CommonMark\CQL — The CommonMark\CQL class CommonMa ... pattern matching 例 Parle\Lexer — The Parle\Lexer class Parle\RLexer — The Parle\RLexer class Parle\Parser ... — The Parle\Parser class Parle\RParser — The Parle\RParser class Parle\Stac ... k — The Parle\Stack class Parle\Token — The Parle\Token class Parle\ErrorInf ...
https://man.plustar.jp/php/refs.basic.text.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT