検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 1070 for Dump (0.030 sec.)
新機能 3408
« PHP 7.0.x から PHP 7.1.x への移行 新しい関数 » PHP Manual PHP 7.0.x から PHP 7.1.x への移行 新 ... stReturn (): ? string { return 'elePHPant' ; } var_dump ( testReturn ()); function testReturn (): ? string ... { return null ; } var_dump ( testReturn ()); function test (? string $name ) ... { var_dump ( $name ); } test ( 'elePHPant' ); test ( null ); ... = $right ; $right = $tmp ; } $a = 1 ; $b = 2 ; var_dump ( swap ( $a , $b ), $a , $b ); 上の例の出力は以下と ...
https://man.plustar.jp/php/migration71.new-features.html - [similar]
Returns the DateTime representation of this UTCDateTime 3408
« MongoDB\BSON\UTCDateTime::serialize MongoDB\BSON\UTCDateTime::__toString » PHP Manual MongoDB\ ... ); $datetime = $utcdatetime -> toDateTime (); var_dump ( $datetime -> format ( 'r' )); var_dump ( $dateti ... me -> format ( 'U.u' )); var_dump ( $datetime -> getTimezone ()); ?> 上の例の出力は、 ...
https://man.plustar.jp/php/mongodb-bson-utcdatetime.todatetime.html - [similar]
例外によるエラー処理の有効化および無効化を行う 3408
« RarException::isUsingExceptions Zip » PHP Manual RarException 例外によるエラー処理の有効化およ ... RarException::setUsingExceptions() の例 <?php var_dump ( RarException :: isUsingExceptions ()); $arch = R ... arArchive :: open ( "does_not_exist.rar" ); var_dump ( $arch ); RarException :: setUsingExceptions ( tr ... ue ); var_dump ( RarException :: isUsingExceptions ()); $arch = R ... arArchive :: open ( "does_not_exist.rar" ); var_dump ( $arch ); //not reached ?> 上の例の出力は、 たとえ ...
https://man.plustar.jp/php/rarexception.setusingexceptions.html - [similar]
定義されている定数を取得する 3408
« ReflectionClass::getAttributes ReflectionClass::getConstants » PHP Manual ReflectionClass 定義 ... eflection = new ReflectionClass ( 'Example' ); var_dump ( $reflection -> getConstant ( 'C1' )); var_dump ( ... $reflection -> getConstant ( 'C2' )); var_dump ( $reflection -> getConstant ( 'C3' )); ?> 上の例の ...
https://man.plustar.jp/php/reflectionclass.getconstant.html - [similar]
Manually release stream flow from logger 3408
« SeasLog::analyzerDetail SeasLog::__construct » PHP Manual SeasLog Manually release stream flow ... 例1 SeasLog::closeLoggerStream() example <?php var_dump ( SeasLog :: closeLoggerStream ()); var_dump ( Sea ... ream ( SEASLOG_CLOSE_LOGGER_STREAM_MOD_ALL )); var_dump ( SeasLog :: closeLoggerStream ( SEASLOG_CLOSE_LOG ...
https://man.plustar.jp/php/seaslog.closeloggerstream.html - [similar]
Retrieve a item 3408
« Yaconf Yaconf::has » PHP Manual Yaconf Retrieve a item Yaconf::get (PECL yaconf >= 1.0.0) Yaco ... 出力は、 たとえば以下のようになります。 php7 -r 'var_dump(Yaconf::get("foo.SectionA.key"));' //string(3) "va ... l" php7 -r 'var_dump(Yaconf::get("foo.SectionB.key"));' //string(7) "ne ... w_val" php7 -r 'var_dump(Yaconf::get("foo")["SectionA"]["hash"]);' //array( ...
https://man.plustar.jp/php/yaconf.get.html - [similar]
値を JSON 形式にして返す 3372
« json_decode json_last_error_msg » PHP Manual JSON 関数 値を JSON 形式にして返す json_encode (P ... '+123123' , '-123123' , '1.2e3' , '0.00001' ); var_dump ( $numbers , json_encode ( $numbers , JSON_NUMERIC ... $strings = array( '+a33123456789' , 'a123' ); var_dump ( $strings , json_encode ( $strings , JSON_NUMERIC ... al = array( "foo" , "bar" , "baz" , "blong" ); var_dump ( $sequential , json_encode ( $sequential ) ); ech ... o" , 2 => "bar" , 3 => "baz" , 4 => "blong" ); var_dump ( $nonsequential , json_encode ( $nonsequential ) ...
https://man.plustar.jp/php/function.json-encode.html - [similar]
コードポイントの合成クラスを取得する 3372
« IntlChar::getBlockCode IntlChar::getFC_NFKC_Closure » PHP Manual IntlChar コードポイントの合成 ... ます。 例 例1 さまざまなコードポイントの例 <?php var_dump ( IntlChar :: getCombiningClass ( "A" )); var_dump ... IntlChar :: getCombiningClass ( "\u{0334}" )); var_dump ( IntlChar :: getCombiningClass ( "\u{0358}" )); ? ...
https://man.plustar.jp/php/intlchar.getcombiningclass.html - [similar]
指定された値の名前に対応する、プロパティの値を取得する 3372
« IntlChar::getPropertyName IntlChar::getPropertyValueName » PHP Manual IntlChar 指定された値の名 ... 返します。 例 例1 さまざまなプロパティの例 <?php var_dump ( IntlChar :: getPropertyValueEnum ( IntlChar :: P ... 'greek' ) === IntlChar :: BLOCK_CODE_GREEK ); var_dump ( IntlChar :: getPropertyValueEnum ( IntlChar :: P ... == IntlChar :: CHAR_DIRECTION_RIGHT_TO_LEFT ); var_dump ( IntlChar :: getPropertyValueEnum ( IntlChar :: P ... ng' ) === IntlChar :: PROPERTY_INVALID_CODE ); var_dump ( IntlChar :: getPropertyValueEnum ( 123456789 , ' ...
https://man.plustar.jp/php/intlchar.getpropertyvalueenum.html - [similar]
基本的な事 3372
« 変数 定義済みの変数 » PHP Manual 変数 基本的な事 基本的な事 PHP の変数はドル記号の後に変数名が ... 中のコンテキストではない) 変数は NULL となります var_dump ( $unset_var ); // boolean として使用すると、出力は ... ing(3) "abc"' となります $unset_str .= 'abc' ; var_dump ( $unset_str ); // integer として使用すると、出力は ... となります $unset_int += 25 ; // 0 + 25 => 25 var_dump ( $unset_int ); // float/double として使用すると、 ... float(1.25)' となります $unset_float += 1.25 ; var_dump ( $unset_float ); // 配列として使用すると、出力は ...
https://man.plustar.jp/php/language.variables.basics.html - [similar]