検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 1070 for Dump (0.009 sec.)
Determines if the vector contains given values 4932
« Ds\Vector::__construct Ds\Vector::copy » PHP Manual Vector Determines if the vector contains g ... Ds \ Vector ([ 'a' , 'b' , 'c' , 1 , 2 , 3 ]); var_dump ( $vector -> contains ( 'a' )); // true var_dump ( ... $vector -> contains ( 'a' , 'b' )); // true var_dump ( $vector -> contains ( 'c' , 'd' )); // false var ... _dump ( $vector -> contains (...[ 'c' , 'b' , 'a' ])); / ... / true // Always strict var_dump ( $vector -> contains ( 1 )); // true var_dump ( $ ...
https://man.plustar.jp/php/ds-vector.contains.html - [similar]
内部的な zval を表す文字列をダンプする 4830
« boolval doubleval » PHP Manual 変数操作 関数 内部的な zval を表す文字列をダンプする debug_zval ... _dump (PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8) debug_zval_d ... 部的な zval を表す文字列をダンプする 説明 debug_zval_dump ( mixed $value , mixed ...$values ): void 内部的な ... または値。 戻り値 値を返しません。 例 例1 debug_zval_dump() の例 <?php $var1 = 'Hello' ; $var1 .= ' World' ; ... $var2 = $var1 ; debug_zval_dump ( $var1 ); ?> 上の例の出力は以下となります。 strin ...
https://man.plustar.jp/php/function.debug-zval-dump.html - [similar]
4770
« 定義済み定数 Eio 関数 » PHP Manual Eio 例 例 例1 リクエストの取り消し <?php /* eio_nop() が終わ ... o_nop ( EIO_PRI_DEFAULT , "my_nop_cb" , "1" ); var_dump ( $req ); eio_cancel ( $req ); // この eio_nop() は ... ction my_custom_callback ( $data , $result ) { var_dump ( $data ); var_dump ( count ( $result )); var_dump ... ( $result [ 'data_modified' ]); var_dump ( $result [ 'result' ]); } /* カスタムリクエスト * ... / function my_custom ( $data ) { var_dump ( $data ); $result = array( 'result' => 1001 , 'da ...
https://man.plustar.jp/php/eio.examples.html - [similar]
論理型 (boolean) 4734
« はじめに 整数 » PHP Manual 型 論理型 (boolean) 論理型 (boolean) 論理型は、最も簡単な型です。 b ... 様に (正負によらず) true とみなされます。 <?php var_dump ((bool) "" ); // bool(false) var_dump ((bool) "0" ... ); // bool(false) var_dump ((bool) 1 ); // bool(true) var_dump ((bool) - 2 ); ... // bool(true) var_dump ((bool) "foo" ); // bool(true) var_dump ((bool) 2. ... 3e5 ); // bool(true) var_dump ((bool) array( 12 )); // bool(true) var_dump ((boo ...
https://man.plustar.jp/php/language.types.boolean.html - [similar]
デバッグ操作を行う 4734
« mysqli::__construct mysqli::dump_debug_info » PHP Manual mysqli デバッグ操作を行う mysqli::deb ... BUG_FLUSH A/a MYSQLND_DEBUG_APPEND F MYSQLND_DEBUG_DUMP_FILE i MYSQLND_DEBUG_DUMP_PID L MYSQLND_DEBUG_DUMP ... m MYSQLND_DEBUG_TRACE_MEMORY_CALLS n MYSQLND_DEBUG_DUMP_LEVEL o 出力先のファイル T MYSQLND_DEBUG_DUMP_TIME ... t MYSQLND_DEBUG_DUMP_TRACE x MYSQLND_DEBUG_PROFILE_CALLS 戻り値 true を ... 効にしてコンパイルする 必要があります。 参考 mysqli_dump_debug_info() - デバッグ情報をログに出力する mysqli ...
https://man.plustar.jp/php/mysqli.debug.html - [similar]
Flush logs buffer, dump to appender file, or send to remote api with tcp/udp 4734
« SeasLog::error SeasLog::getBasePath » PHP Manual SeasLog Flush logs buffer, dump to appender f ... >=1.0.0) SeasLog::flushBuffer — Flush logs buffer, dump to appender file, or send to remote api with tcp/u ... r (): bool Flush logs buffer by seaslog.appender : dump to file, or send to remote api with tcp/udp. 注意 ... info log' ); SeasLog :: debug ( 'debug log' ); var_dump ( SeasLog :: getBuffer ()); var_dump ( SeasLog :: ... flushBuffer ()); var_dump ( SeasLog :: getBuffer ()); ?> 上の例の出力は、 た ...
https://man.plustar.jp/php/seaslog.flushbuffer.html - [similar]
整数 4638
« 論理型 (boolean) 浮動小数点数 » PHP Manual 型 整数 整数 int は、ℤ = {..., -2, -1, 0, 1, 2, ... ... ーバーフロー <?php $large_number = 2147483647 ; var_dump ( $large_number ); // int(2147483647) $large_numbe ... r = 2147483648 ; var_dump ( $large_number ); // float(2147483648) $million = ... 1000000 ; $large_number = 50000 * $million ; var_dump ( $large_number ); // float(50000000000) ?> 例3 64 ... ロー <?php $large_number = 9223372036854775807 ; var_dump ( $large_number ); // int(9223372036854775807) $la ...
https://man.plustar.jp/php/language.types.integer.html - [similar]
Restores the RRD file from XML dump 4608
« rrd_lastupdate rrd_tune » PHP Manual RRD 関数 Restores the RRD file from XML dump rrd_restore ... .9.0) rrd_restore — Restores the RRD file from XML dump 説明 rrd_restore ( string $xml_file , string $rrd_ ... ons = ? ): bool Restores the RRD file from the XML dump. パラメータ xml_file XML filename with the dump of ...
https://man.plustar.jp/php/function.rrd-restore.html - [similar]
デバッグ情報をログに出力する 4608
« mysqli::debug mysqli::$errno » PHP Manual mysqli デバッグ情報をログに出力する mysqli::dump_deb ... ug_info mysqli_dump_debug_info (PHP 5, PHP 7, PHP 8) mysqli::dump_debu ... g_info -- mysqli_dump_debug_info — デバッグ情報をログに出力する 説明 オブ ... ジェクト指向型 public mysqli::dump_debug_info (): bool 手続き型 mysqli_dump_debug_inf ...
https://man.plustar.jp/php/mysqli.dump-debug-info.html - [similar]
Parsing and lexing 4506
« CommonMark\Render\XML はじめに » PHP Manual テキスト処理 Parsing and lexing Parsing and lexing ... onsume — Pass the data for processing Parle\Lexer::dumpDump the state machine Parle\Lexer::getToken — R ... nsume — Pass the data for processing Parle\RLexer::dumpDump the state machine Parle\RLexer::getToken — ... me — Consume the data for processing Parle\Parser::dumpDump the grammar Parle\Parser::errorInfo — Retri ... e — Consume the data for processing Parle\RParser::dumpDump the grammar Parle\RParser::errorInfo — Retr ...
https://man.plustar.jp/php/book.parle.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT