Results of 1 - 10 of about 1070 for Dump (0.003 sec.)
- 浮動小数点数を丸める 6972
- « rand sin » PHP Manual Math 関数 浮動小数点数を丸める round (PHP 4, PHP 5, PHP 7, PHP 8) round
...
け入れなくなりました。 例 例1 round() の例 <?php var_dump ( round ( 3.4 )); var_dump ( round ( 3.5 )); var_d ...
ump ( round ( 3.6 )); var_dump ( round ( 3.6 , 0 )); var_dump ( round ( 5.045 , 2 ...
)); var_dump ( round ( 5.055 , 2 )); var_dump ( round ( 345 , - ...
2 )); var_dump ( round ( 345 , - 3 )); var_dump ( round ( 678 , - ...
-
https://man.plustar.jp/php/function.round.html
- [similar]
- Dump cache 6456
- « Yac::delete Yac::flush » PHP Manual Yac Dump cache Yac::dump (PECL yac >= 1.0.0) Yac::dump — Dump
...
ump cache 説明 public Yac::dump ( int $$num ): mixed Dump values stored in cache パ ...
ms should be returned 戻り値 mixed 関連キーワード: Dump , Yac , num , flush , public , int , values , stor ...
-
https://man.plustar.jp/php/yac.dump.html
- [similar]
- 型演算子 6390
- « 配列演算子 制御構造 » PHP Manual 演算子 型演算子 型演算子 instanceof を使用して、 ある PHP 変数
...
ss { } class NotMyClass { } $a = new MyClass ; var_dump ( $a instanceof MyClass ); var_dump ( $a instanceo ...
ass extends ParentClass { } $a = new MyClass ; var_dump ( $a instanceof MyClass ); var_dump ( $a instanceo ...
方法 <?php class MyClass { } $a = new MyClass ; var_dump (!( $a instanceof stdClass )); ?> 上の例の出力は以 ...
implements MyInterface { } $a = new MyClass ; var_dump ( $a instanceof MyClass ); var_dump ( $a instanceo ...
-
https://man.plustar.jp/php/language.operators.type.html
- [similar]
- Dump the grammar 6390
- « Parle\Parser::consume Parle\Parser::errorInfo » PHP Manual Parle\Parser Dump the grammar Parle
...
\Parser::dump (PECL parle >= 0.5.1) Parle\Parser::dump — Dump th ...
e grammar 説明 public Parle\Parser::dump (): void Dump the current grammar to stdout. パラメ ...
ありません。 戻り値 値を返しません。 関連キーワード: Dump , grammar , Parle , Parser , the , パラメータ , co ...
-
https://man.plustar.jp/php/parle-parser.dump.html
- [similar]
- Dump the grammar 6390
- « Parle\RParser::consume Parle\RParser::errorInfo » PHP Manual Parle\RParser Dump the grammar Pa
...
rle\RParser::dump (PECL parle >= 0.7.0) Parle\RParser::dump — Dump t ...
he grammar 説明 public Parle\RParser::dump (): void Dump the current grammar to stdout. パラメ ...
ありません。 戻り値 値を返しません。 関連キーワード: Dump , grammar , Parle , RParser , the , パラメータ , c ...
-
https://man.plustar.jp/php/parle-rparser.dump.html
- [similar]
- Dump the state machine 6360
- « Parle\Lexer::consume Parle\Lexer::getToken » PHP Manual Parle\Lexer Dump the state machine Par
...
le\Lexer::dump (PECL parle >= 0.5.1) Parle\Lexer::dump — Dump the ...
state machine 説明 public Parle\Lexer::dump (): void Dump the current state machine to stdout. ...
ありません。 戻り値 値を返しません。 関連キーワード: Dump , Parle , the , パラメータ , consume , getToken , ...
-
https://man.plustar.jp/php/parle-lexer.dump.html
- [similar]
- Dump the state machine 6360
- « Parle\RLexer::consume Parle\RLexer::getToken » PHP Manual Parle\RLexer Dump the state machine
...
Parle\RLexer::dump (PECL parle >= 0.5.1) Parle\RLexer::dump — Dump th ...
e state machine 説明 public Parle\RLexer::dump (): void Dump the current state machine to stdout. ...
ありません。 戻り値 値を返しません。 関連キーワード: Dump , Parle , RLexer , the , パラメータ , consume , ge ...
-
https://man.plustar.jp/php/parle-rlexer.dump.html
- [similar]
- 変数が宣言されていること、そして null とは異なることを検査する 6258
- « is_string print_r » PHP Manual 変数操作 関数 変数が宣言されていること、そして null とは異なるこ
...
// 次の例では、isset() の戻り値を出力するため var_dump を // 使用している $a = "test" ; $b = "anothertest ...
" ; var_dump (isset( $a )); // TRUE var_dump (isset( $a , $b )) ...
; // TRUE unset ( $a ); var_dump (isset( $a )); // FALSE var_dump (isset( $a , $b ) ...
); // FALSE $foo = NULL ; var_dump (isset( $foo )); // FALSE ?> この関数は配列の要素に ...
-
https://man.plustar.jp/php/function.isset.html
- [similar]
- Dump the function as a binary blob 5838
- « LuaSandboxFunction::__construct LuaSandboxError » PHP Manual LuaSandboxFunction Dump the funct
...
ion as a binary blob LuaSandboxFunction::dump (PECL luasandbox >= 1.0.0) LuaSandboxFunction::dum ...
p — Dump the function as a binary blob 説明 public LuaSandb ...
oxFunction::dump (): string Dumps the function as a binary blob. パ ...
loadBinary() . 関連キーワード: function , binary , Dump , the , LuaSandboxFunction , パラメータ , string , ...
-
https://man.plustar.jp/php/luasandboxfunction.dump.html
- [similar]
- Basic FFI usage 5772
- « 例 PHP Callbacks » PHP Manual 例 Basic FFI usage Basic FFI usage Before diving into the detail
...
struct timezone" ); // call C's gettimeofday() var_dump ( $ffi -> gettimeofday ( FFI :: addr ( $tv ), FFI ...
( $tz ))); // access field of C data structure var_dump ( $tv -> tv_sec ); // print the whole C data struc ...
ture var_dump ( $tz ); ?> 上の例の出力は、 たとえば以下のようにな ...
declaration "libc.so.6" ); // print C's errno var_dump ( $ffi -> errno ); ?> 上の例の出力は以下となります ...
-
https://man.plustar.jp/php/ffi.examples-basic.html
- [similar]