検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 653 for Static (0.003 sec.)
static キーワード 8000
« スコープ定義演算子 (::) クラスの抽象化 » PHP Manual クラスとオブジェクト static キーワード static ... tic キーワード ヒント このページでは、 static キーワードを使って static メソッド や static プロパ ... ティを定義する方法を説明します。 static は、 static 変数 や 遅延静的束縛 にも使えます。これ ... らの場合の static の使い方は、 それぞれのページを参照ください。 クラ ... スプロパティもしくはメソッドを static として宣言することで、 クラスのインスタンス化の必要 ...
https://man.plustar.jp/php/language.oop5.static.html - [similar]
The SeasLog class 7416
« seaslog_get_version SeasLog::alert » PHP Manual Seaslog The SeasLog class The SeasLog class (P ... に クラス概要 class SeasLog { /* メソッド */ public static alert ( string $message , array $content = ? , str ... ing $logger = ? ): bool public static analyzerCount ( string $level , string $log_path = ... ? , string $key_word = ? ): mixed public static analyzerDetail ( string $level , string $log_path ... , int $limit = ? , int $order = ? ): mixed public static closeLoggerStream ( int $model , string $logger ): ...
https://man.plustar.jp/php/class.seaslog.html - [similar]
Sets the static variables in function or method scope 7330
« uopz_set_return uopz_undefine » PHP Manual Uopz 関数 Sets the static variables in function or ... method scope uopz_set_static (PECL uopz 5, PECL uopz , PECL uopz 7) uopz_set_st ... atic — Sets the static variables in function or method scope 説明 uopz_se ... t_static ( string $function , array $static ): void uopz_se ... t_static ( string $class , string $function , array $static ...
https://man.plustar.jp/php/function.uopz-set-static.html - [similar]
遅延静的束縛 (Late Static Bindings) 7301
« オブジェクトの比較 オブジェクトと参照 » PHP Manual クラスとオブジェクト 遅延静的束縛 (Late Static ... tic Bindings) 遅延静的束縛 (Late Static Bindings) PHP には、遅延静的束縛と呼ばれる機能が搭 ... 束縛は直近の "非転送コール" のクラス名を保存します。 staticメソッドの場合、これは明示的に指定されたクラス (通常 ... は :: 演算子の左側に書かれたもの) となります。staticメソッド以外の場合は、そのオブジェクトのクラスとなり ... ます。 "転送コール" とは、 self:: や parent:: 、 static:: による :: 演算子を使ったコール。 あるいはクラス階 ...
https://man.plustar.jp/php/language.oop5.late-static-bindings.html - [similar]
変数のスコープ 7121
« 定義済みの変数 可変変数 » PHP Manual 変数 変数のスコープ 変数のスコープ 変数のスコープは、その ... 内部からインクルードされたときに使うことができます。 static 変数の使用 変数のスコープに関する別の重要な機能は、 ... static (静的) 変数です。static 変数はローカル関数スコープ ... てもその値を失いません。次の例を見てください。 例4 static 変数が必要な場面の例 <?php function test () { $a = ... ント関数を使用できるようにするた めには、変数 $a を static として宣言します。 例5 static 変数の使用例 <?php f ...
https://man.plustar.jp/php/language.variables.scope.html - [similar]
Gets the static variables from function or method scope 7063
« uopz_get_return uopz_implement » PHP Manual Uopz 関数 Gets the static variables from function ... or method scope uopz_get_static (PECL uopz 5, PECL uopz 6, PECL uopz 7) uopz_get_s ... tatic — Gets the static variables from function or method scope 説明 uopz_ ... get_static ( string $class , string $function ): array uopz_g ... et_static ( string $function ): array Gets the static variab ...
https://man.plustar.jp/php/function.uopz-get-static.html - [similar]
列挙型と static メソッド 6890
« 列挙型とメソッド 列挙型と定数 » PHP Manual 列挙型(Enum) 列挙型と static メソッド 列挙型と static ... ic メソッド 列挙型は、static メソッドを持つこともできます。 列挙型で static メソ ... e { case Small ; case Medium ; case Large ; public static function fromLength ( int $cm ): static { return m ... atch ( true ) { $cm < 50 => static:: Small , $cm < 100 => static:: Medium , default = ... > static:: Large , }; } } ?> static メソッドには public, pr ...
https://man.plustar.jp/php/language.enumerations.static-methods.html - [similar]
Main interface to C code and data 6832
« A Complete PHP/FFI/preloading Example FFI::addr » PHP Manual FFI Main interface to C code and ... クラス概要 final class FFI { /* メソッド */ public static addr ( FFI\CData &$ptr ): FFI\CData public static ... lignof ( FFI\CData | FFI\CType &$ptr ): int public static arrayType ( FFI\CType $type , array $dimensions ): ... FFI\CType public static cast ( FFI\CType | string $type , FFI\CData | int ... | float | bool | null &$ptr ): ? FFI\CData public static cdef ( string $code = "" , ? string $lib = null ): ...
https://man.plustar.jp/php/class.ffi.html - [similar]
static メソッドをコールし、引数を配列で渡す 6804
« create_function forward_static_call » PHP Manual 関数処理 関数 static メソッドをコールし、引数 ... を配列で渡す forward_static_call_array (PHP 5 >= 5.3.0, PHP 7, PHP 8) forward_ ... static_call_array — static メソッドをコールし、引数を配列で渡す 説明 forward_ ... べてのパラメータを配列で指定します。 注意 : forward_static_call_array() へのパラメータは参照渡しではないことに ... あるいはエラー時に false を返します。 例 例1 forward_static_call_array() の例 <?php class A { const NAME = 'A' ...
https://man.plustar.jp/php/function.forward-static-call-array.html - [similar]
static メソッドをコールする 6804
« forward_static_call_array func_get_arg » PHP Manual 関数処理 関数 static メソッドをコールする ... forward_static_call (PHP 5 >= 5.3.0, PHP 7, PHP 8) forward_static ... _call — static メソッドをコールする 説明 forward_static_call ( ca ... あるいはエラー時に false を返します。 例 例1 forward_static_call() の例 <?php class A { const NAME = 'A' ; pub ... lic static function test () { $args = func_get_args (); echo ...
https://man.plustar.jp/php/function.forward-static-call.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT