検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 247 for bar (0.014 sec.)
Set Value 5295
« UI\Controls\Progress::getValue UI\Controls\Separator » PHP Manual UI\Controls\Progress Set Val ... int $value ) Shall set the value for this Progress bar パラメータ value An integer between 0 and 100 (inc ... ue , getValue , Separator , public , int , Shall , bar ...
https://man.plustar.jp/php/ui-controls-progress.setvalue.html - [similar]
与えられたクラスの親クラスを返す 5244
« class_implements class_uses » PHP Manual SPL 関数 与えられたクラスの親クラスを返す class_paren ... 例1 class_parents() の例 <?php class foo { } class bar extends foo {} print_r ( class_parents (new bar )) ... 字列として指定しても良い print_r ( class_parents ( 'bar' )); spl_autoload_register (); // 'not_loaded' クラ ...
https://man.plustar.jp/php/function.class-parents.html - [similar]
アクティブな MIB ツリーの中に MIB ファイルを読み込んでパースする 5244
« snmp_get_valueretrieval snmp_set_enum_print » PHP Manual SNMP 関数 アクティブな MIB ツリーの中 ... '.1.3.6.1.2.1.2.3.4.5' ) ); snmp_read_mib ( './FOO-BAR-MIB.txt' ); print_r ( snmprealwalk ( 'localhost' , ... 'public' , 'FOO-BAR-MIB::someTable' ) ); ?> 上の例の結果は次のようにな ... .3.6.1.2.1.2.3.4.5.0] => Gauge32: 6 ) Array ( [FOO-BAR-MIB::someTable.0] => Gauge32: 6 ) 関連キーワード: ...
https://man.plustar.jp/php/function.snmp-read-mib.html - [similar]
スカラー値を追加する 5244
« sodium_crypto_core_ristretto255_random sodium_crypto_core_ristretto255_scalar_complement » PHP ... sodium_crypto_core_ristretto255_scalar_random (); $bar = sodium_crypto_core_ristretto255_scalar_random () ... dium_crypto_core_ristretto255_scalar_add ( $foo , $bar ); $value = sodium_crypto_core_ristretto255_scalar ... _sub ( $value , $bar ); var_dump ( hash_equals ( $foo , $value )); ?> 上 ...
https://man.plustar.jp/php/function.sodium-crypto-core-ristretto255-scalar-add.h... - [similar]
スカラー値を減らす 5244
« sodium_crypto_core_ristretto255_scalar_reduce sodium_crypto_core_ristretto255_sub » PHP Manual ... sodium_crypto_core_ristretto255_scalar_random (); $bar = sodium_crypto_core_ristretto255_scalar_random () ... dium_crypto_core_ristretto255_scalar_add ( $foo , $bar ); $value = sodium_crypto_core_ristretto255_scalar ... _sub ( $value , $bar ); var_dump ( hash_equals ( $foo , $value )); ?> 上 ...
https://man.plustar.jp/php/function.sodium-crypto-core-ristretto255-scalar-sub.h... - [similar]
変数が既にキャッシュに存在しない場合にのみ変数をユーザーキャッシュに追加する 5244
« wincache_scache_meminfo wincache_ucache_cas » PHP Manual WinCache 関数 変数が既にキャッシュに存 ... ncache_ucache_add() で key を文字列にする例 <?php $bar = 'BAR' ; var_dump ( wincache_ucache_add ( 'foo' , ... $bar )); var_dump ( wincache_ucache_add ( 'foo' , $bar ... は以下となります。 bool(true) bool(false) string(3) "BAR" 例2 wincache_ucache_add() で key を配列にする例 < ...
https://man.plustar.jp/php/function.wincache-ucache-add.html - [similar]
型の相互変換 5244
« 型宣言 変数 » PHP Manual 型 型の相互変換 型の相互変換 PHP は、変数定義時に明示的な型定義を必要 ... ] = 'b' ; // $a はここでも文字列です echo $a ; // bar ?> 詳細は、 文字として文字列をアクセスする というセ ... 前に置きます。 <?php $foo = 10 ; // $foo は整数です $bar = (boolean) $foo ; // $bar はbooleanです ?> 使用可 ... って、次の文は機能的に等価です。 <?php $foo = (int) $bar ; $foo = ( int ) $bar ; ?> リテラル文字列や変数を、 ...
https://man.plustar.jp/php/language.types.type-juggling.html - [similar]
クラス定数を取得する 5244
« ReflectionClass::getReflectionConstant ReflectionClass::getShortName » PHP Manual ReflectionCl ... class Foo { public const FOO = 1 ; protected const BAR = 2 ; private const BAZ = 3 ; } $foo = new Foo (); ... 上の例の出力は、 たとえば以下のようになります。 FOO BAR BAZ array(3) { [0]=> object(ReflectionClassConstan ... ectionClassConstant)#4 (2) { ["name"]=> string(3) "BAR" ["class"]=> string(3) "Foo" } [2]=> object(Reflec ...
https://man.plustar.jp/php/reflectionclass.getreflectionconstants.html - [similar]
エントリが存在するかどうかを調べる 5194
« apcu_entry apcu_fetch » PHP Manual APCu 関数 エントリが存在するかどうかを調べる apcu_exists (P ... ot' ; apcu_store ( 'foo' , $fruit ); apcu_store ( 'bar' , $veggie ); if ( apcu_exists ( 'foo' )) { echo " ... $ret = apcu_exists (array( 'foo' , 'donotexist' , 'bar' )); var_dump ( $ret ); ?> 上の例の出力は、 たとえ ... z does not exist array(2) { ["foo"]=> bool(true) ["bar"]=> bool(true) } 参考 apcu_cache_info() - APCu のデ ...
https://man.plustar.jp/php/function.apcu-exists.html - [similar]
指定したクラスが使っているトレイトを返す 5194
« class_parents iterator_apply » PHP Manual SPL 関数 指定したクラスが使っているトレイトを返す cl ... 例 例1 class_uses() の例 <?php trait foo { } class bar { use foo ; } print_r ( class_uses (new bar )); pr ... int_r ( class_uses ( 'bar' )); spl_autoload_register (); // オートローディン ...
https://man.plustar.jp/php/function.class-uses.html - [similar]