検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 1200 for var (0.091 sec.)
リファレンスの適用範囲 3809
« リファレンスの解除 定義済の変数 » PHP Manual リファレンスの説明 リファレンスの適用範囲 リファレ ... ものがあります。 global リファレンス 変数を global $var として宣言した場合、実際には グローバル変数へのリフ ... とになります。この意味は、 次の例と同じです。 <?php $var =& $GLOBALS [ "var" ]; ?> これは、例えば、 $var... ます。 関連キーワード: リファレンス , 構造 , 意味 , var , 削除 , 変数 , 構文 , 機構 , 利用 , 実装 ...
https://man.plustar.jp/php/language.references.spot.html - [similar]
型宣言 3809
« コールバック / Callable 型の相互変換 » PHP Manual 型 型宣言 型宣言 関数のパラメータや戻り値、 ... t { return $a + $b ; } // float が返される点に注意 var_dump ( sum ( 1 , 2 )); ?> 上の例の出力は以下となり ... class C {} function getC (): C { return new C ; } var_dump ( getC ()); ?> 上の例の出力は以下となります。 ... 容する型宣言 <?php class C {} function f (? C $c ) { var_dump ( $c ); } f (new C ); f ( null ); ?> 上の例の ... やり方 <?php class C {} function f ( C $c = null ) { var_dump ( $c ); } f (new C ); f ( null ); ?> 上の例の ...
https://man.plustar.jp/php/language.types.declarations.html - [similar]
サーバーに項目を追加する 3809
« Memcache Memcache::addServer » PHP Manual Memcache サーバーに項目を追加する Memcache::add (PEC ... を追加する 説明 Memcache::add ( string $key , mixed $var , int $flag = ? , int $expire = ? ): bool Memcache ... のキーが存在しない 場合に限り、 key というキーで 値 var を格納します。 memcache_add() 関数を使用することも ... 可能です。 パラメータ key 項目に関連付けられたキー。 var 格納する値。文字列および整数値はそのままの形式で、 ... 手続き型の API */ memcache_add ( $memcache_obj , 'var_key' , 'test variable' , false , 30 ); /* オブジェ ...
https://man.plustar.jp/php/memcache.add.html - [similar]
デフォルト値が宣言されているかをチェックする 3809
« ReflectionProperty::getValue ReflectionProperty::hasType » PHP Manual ReflectionProperty デフォ ... '' ; } } $ro = new ReflectionObject (new Foo ()); var_dump ( $ro -> getProperty ( 'bar' )-> hasDefaultVa ... lue ()); var_dump ( $ro -> getProperty ( 'baz' )-> hasDefaultVa ... lue ()); var_dump ( $ro -> getProperty ( 'foo' )-> hasDefaultVa ... lue ()); var_dump ( $ro -> getProperty ( 'boing' )-> hasDefault ...
https://man.plustar.jp/php/reflectionproperty.hasdefaultvalue.html - [similar]
Record emergency log information 3809
« SeasLog::__destruct SeasLog::error » PHP Manual SeasLog Record emergency log information SeasL ... failure. 例 例1 SeasLog::emergency() example <?php var_dump ( SeasLog :: emergency ( 'log message' )); // ... with content var_dump ( SeasLog :: emergency ( 'log message from {N ... ' ,array( 'NAME' => 'neeke' ))); //with tmp logger var_dump ( SeasLog :: emergency ( 'log message from {N ... ME}' ,array( 'NAME' => 'neeke' ), 'tmp_logger' )); var_dump ( SeasLog :: getBuffer ()); ?> 上の例の出力は ...
https://man.plustar.jp/php/seaslog.emergency.html - [similar]
IEEE 754 に従い、数値の除算を行う 3780
« expm1 floor » PHP Manual Math 関数 IEEE 754 に従い、数値の除算を行う fdiv (PHP 8) fdiv — IEEE ... 小数点数として返します。 例 例1 fdiv() を使う <?php var_dump ( fdiv ( 5.7 , 1.3 )); // float(4.38461538461 ... 5385) var_dump ( fdiv ( 4 , 2 )); // float(2) var_dump ( fdi ... v ( 1.0 , 0.0 )); // float(INF) var_dump ( fdiv (- 1.0 , 0.0 )); // float(-INF) var_du ...
https://man.plustar.jp/php/function.fdiv.html - [similar]
文字列の先頭および末尾にあるホワイトスペースを取り除く 3780
« substr ucfirst » PHP Manual String 関数 文字列の先頭および末尾にあるホワイトスペースを取り除く ... \x09Example string\x0A" ; $hello = "Hello World" ; var_dump ( $text , $binary , $hello ); print "\n" ; $t ... rimmed = trim ( $text ); var_dump ( $trimmed ); $trimmed = trim ( $text , " \t. ... " ); var_dump ( $trimmed ); $trimmed = trim ( $hello , "Hdl ... e" ); var_dump ( $trimmed ); $trimmed = trim ( $hello , 'HdW ...
https://man.plustar.jp/php/function.trim.html - [similar]
現在の tar/zip アーカイブ内のすべてのファイルを圧縮する 3780
« PharData::compress PharData::__construct » PHP Manual PharData 現在の tar/zip アーカイブ内のす ... 'myfile2.txt' ] = 'hi' ; foreach ( $p as $file ) { var_dump ( $file -> getFileName ()); var_dump ( $file ... -> isCompressed ()); var_dump ( $file -> isCompressed ( Phar :: BZ2 )); var ... essFiles ( Phar :: GZ ); foreach ( $p as $file ) { var_dump ( $file -> getFileName ()); var_dump ( $file ... -> isCompressed ()); var_dump ( $file -> isCompressed ( Phar :: BZ2 )); var ...
https://man.plustar.jp/php/phardata.compressfiles.html - [similar]
現在の zip アーカイブ内のすべてのファイルの圧縮を解除する 3780
« PharData::decompress PharData::delMetadata » PHP Manual PharData 現在の zip アーカイブ内のすべ ... essFiles ( Phar :: GZ ); foreach ( $p as $file ) { var_dump ( $file -> getFileName ()); var_dump ( $file ... -> isCompressed ()); var_dump ( $file -> isCompressed ( Phar :: BZ2 )); var ... p -> decompressFiles (); foreach ( $p as $file ) { var_dump ( $file -> getFileName ()); var_dump ( $file ... -> isCompressed ()); var_dump ( $file -> isCompressed ( Phar :: BZ2 )); var ...
https://man.plustar.jp/php/phardata.decompressfiles.html - [similar]
Record alert log information 3780
« SeasLog SeasLog::analyzerCount » PHP Manual SeasLog Record alert log information SeasLog::aler ... on failure. 例 例1 SeasLog::alert() example <?php var_dump ( SeasLog :: alert ( 'log message' )); //with ... content var_dump ( SeasLog :: alert ( 'log message from {NAME} ... ' ,array( 'NAME' => 'neeke' ))); //with tmp logger var_dump ( SeasLog :: alert ( 'log message from {NAME} ... ' ,array( 'NAME' => 'neeke' ), 'tmp_logger' )); var_dump ( SeasLog :: getBuffer ()); ?> 上の例の出力は ...
https://man.plustar.jp/php/seaslog.alert.html - [similar]