検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 1190 for CLASS (0.002 sec.)
Get the class name using OID 5106
« cubrid_get_charset cubrid_get_client_info » PHP Manual CUBRID 関数 Get the class name using OI ... D cubrid_get_class_name (PECL CUBRID >= 8.3.0) cubrid_get_class_name ... — Get the class name using OID 説明 cubrid_get_class_name ( resour ... _identifier , string $oid ): string The cubrid_get_class_name() function is used to get the class name from ... ecting data from the system tables, for example db_class. パラメータ conn_identifier Connection identifier. ...
https://man.plustar.jp/php/function.cubrid-get-class-name.html - [similar]
Get the requested schema information 5083
« cubrid_rollback cubrid_seq_drop » PHP Manual CUBRID 関数 Get the requested schema information ... urce $conn_identifier , int $schema_type , string $class_name = ? , string $attr_name = ? ): array The cubr ... n from database. To get information about specific class, set the class_name , to get information about spe ... Schema Column Number Column Name Value CUBRID_SCH_CLASS 1 NAME 2 TYPE 0:system class 1:vclass 2:class CUBR ... ID_SCH_VCLASS 1 NAME 2 TYPE 1:vclass CUBRID_SCH_QUERY_SPEC 1 QUE ...
https://man.plustar.jp/php/function.cubrid-schema.html - [similar]
5066
« 定義済み定数 クラス/オブジェクト関数 » PHP Manual クラス/オブジェクト 例 例 この例では、まず基 ... 情報を追加します。 例1 クラスの定義 Vegetable <?php class Vegetable { public $edible ; public $color ; publi ... () { return $this -> color ; } } ?> Spinach <?php class Spinach extends Vegetable { public $cooked = false ... ; } } function printMethods ( $obj ) { $arr = get_class_methods ( get_class ( $obj )); foreach ( $arr as $ ... hod ()\n" ; } } function objectBelongsTo ( $obj , $class ) { if ( is_subclass_of ( $obj , $class )) { echo ...
https://man.plustar.jp/php/classobj.examples.html - [similar]
与えられたクラスの親クラスを返す 5043
« class_implements class_uses » PHP Manual SPL 関数 与えられたクラスの親クラスを返す class_paren ... ts (PHP 5, PHP 7, PHP 8) class_parents — 与えられたクラスの親クラスを返す 説明 cl ... ass_parents ( object | string $object_or_class , bool $autoload = true ): array | false この関数は ... 、与えられたクラス object_or_class の親クラス名を 配列で返します。 パラメータ object_ ... or_class オブジェクトもしくはクラスの文字列を指定します。 a ...
https://man.plustar.jp/php/function.class-parents.html - [similar]
Get the current mock for a class 5025
« uopz_get_hook uopz_get_property » PHP Manual Uopz 関数 Get the current mock for a class uopz_g ... uopz 7) uopz_get_mock — Get the current mock for a class 説明 uopz_get_mock ( string $class ): mixed Return ... s the current mock for class . パラメータ class The name of the mocked class. 戻 ... has been set. 例 例1 uopz_get_mock() example <?php class A { public static function who () { echo "A" ; } } ... class mockA { public static function who () { echo "mock ...
https://man.plustar.jp/php/function.uopz-get-mock.html - [similar]
クラスの基礎 5002
« はじめに プロパティ » PHP Manual クラスとオブジェクト クラスの基礎 クラスの基礎 class 各クラス ... の定義は、 class キーワードで始まり、クラス名が続きます。 そしてその ... を含めることができます。 例1 簡単なクラス定義 <?php class SimpleClass { // プロパティの宣言 public $var = 'a ... 定義になっていました。 例2 $this 疑似変数の例 <?php class A { function foo () { if (isset( $this )) { echo ' ... $this is defined (' ; echo get_class ( $this ); echo ")\n" ; } else { echo "\$this is n ...
https://man.plustar.jp/php/language.oop5.basic.html - [similar]
オブジェクトのクラス名を返す 4985
« get_class_vars get_declared_classes » PHP Manual クラス/オブジェクト関数 オブジェクトのクラス名 ... を返す get_class (PHP 4, PHP 5, PHP 7, PHP 8) get_class — オブジェク ... トのクラス名を返す 説明 get_class ( object $object = ? ): string 指定した object のク ... れます。 エラー / 例外 オブジェクト以外に対して get_class() をコールすると、 TypeError がスローされます。 PH ... は、 E_WARNING レベルの警告が発生していました。 get_class() が、クラスの外部から引数なしで呼ばれた場合、 Err ...
https://man.plustar.jp/php/function.get-class.html - [similar]
無名クラス 4962
« トレイト オーバーロード » PHP Manual クラスとオブジェクト 無名クラス 無名クラス 無名クラスは、 ... 合に便利です。 <?php // 明示的にクラスを宣言して使う class Logger { public function log ( $msg ) { echo $msg ... r ()); // 無名クラスを使う $util -> setLogger (new class { public function log ( $msg ) { echo $msg ; } }); ... た、 普通のクラスと同じようなことが可能です。 <?php class SomeClass {} interface SomeInterface {} trait Some ... Trait {} var_dump (new class( 10 ) extends SomeClass implements SomeInterface { ...
https://man.plustar.jp/php/language.oop5.anonymous.html - [similar]
オブジェクトの親クラスの名前を取得する 4939
« get_object_vars interface_exists » PHP Manual クラス/オブジェクト関数 オブジェクトの親クラスの ... 名前を取得する get_parent_class (PHP 4, PHP 5, PHP 7, PHP 8) get_parent_class — オ ... ブジェクトの親クラスの名前を取得する 説明 get_parent_class ( object | string $object_or_class = ? ): string | ... の親クラスの名前を取得します。 パラメータ object_or_class 調べたいオブジェクトあるいはクラスの名前。 オブジェ ... パラメータはオプションとなります。 戻り値 object_or_class がインスタンスあるいは名前であるクラスの親クラス名 ...
https://man.plustar.jp/php/function.get-parent-class.html - [similar]
Gets value of class or instance property 4939
« uopz_get_mock uopz_get_return » PHP Manual Uopz 関数 Gets value of class or instance property ... 6, PECL uopz 7) uopz_get_property — Gets value of class or instance property 説明 uopz_get_property ( stri ... ng $class , string $property ): mixed uopz_get_property ( ob ... ring $property ): mixed Gets the value of a static class property, if class is given, or the value of an in ... stance property, if instance is given. パラメータ class The name of the class. instance The object instanc ...
https://man.plustar.jp/php/function.uopz-get-property.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT