検索

phrase: max: clip:
target: order:
Results of 331 - 340 of about 1070 for Dump (0.085 sec.)
Returns the sum of all values in the vector 3048
« Ds\Vector::sorted Ds\Vector::toArray » PHP Manual Vector Returns the sum of all values in the ... p $vector = new \ Ds \ Vector ([ 1 , 2 , 3 ]); var_dump ( $vector -> sum ()); ?> 上の例の出力は、 たとえば ... $vector = new \ Ds \ Vector ([ 1 , 2.5 , 3 ]); var_dump ( $vector -> sum ()); ?> 上の例の出力は、 たとえば ...
https://man.plustar.jp/php/ds-vector.sum.html - [similar]
バイナリのデータを16進表現に変換する 3048
« addslashes chop » PHP Manual String 関数 バイナリのデータを16進表現に変換する bin2hex (PHP 4, ... の例 <?php $hex = bin2hex ( 'Hello world!' ); var_dump ( $hex ); var_dump ( hex2bin ( $hex )); ?> 上の例の ...
https://man.plustar.jp/php/function.bin2hex.html - [similar]
コマンドライン引数のリストからオプションを取得する 3048
« getmyuid getrusage » PHP Manual PHP オプション/情報 関数 コマンドライン引数のリストからオプショ ... プト example.php $options = getopt ( "f:hp:" ); var_dump ( $options ); ?> shell> php example.php -fvalue -h ... $options = getopt ( $shortopts , $longopts ); var_dump ( $options ); ?> shell> php example.php -f "value ... リプト example.php $options = getopt ( "abc" ); var_dump ( $options ); ?> shell> php example.php -aaac 上の ... os_args = array_slice ( $argv , $rest_index ); var_dump ( $pos_args ); shell> php example.php -a 1 -b 2 -- ...
https://man.plustar.jp/php/function.getopt.html - [similar]
ローカルストリームかどうかを調べる 3048
« stream_get_wrappers stream_isatty » PHP Manual ストリーム 関数 ローカルストリームかどうかを調べ ... eam_is_local() の例 基本的な使用例です。 <?php var_dump ( stream_is_local ( "http://example.com" )); var_d ...
https://man.plustar.jp/php/function.stream-is-local.html - [similar]
Gets value of class or instance property 3048
« uopz_get_mock uopz_get_return » PHP Manual Uopz 関数 Gets value of class or instance property ... = 10 ; private $bar = 100 ; } $foo = new Foo ; var_dump ( uopz_get_property ( 'Foo' , 'staticBar' )); var_ ...
https://man.plustar.jp/php/function.uopz-get-property.html - [similar]
Returns the Javascript's scope document 3048
« MongoDB\BSON\Javascript::getCode MongoDB\BSON\Javascript::jsonSerialize » PHP Manual MongoDB\B ... cript ( 'function foo(bar) { return bar; }' ); var_dump ( $js -> getScope ()); $js = new MongoDB \ BSON \ ... ion foo() { return foo; }' , [ 'foo' => 42 ]); var_dump ( $js -> getScope ()); ?> 上の例の出力は以下となり ...
https://man.plustar.jp/php/mongodb-bson-javascript.getscope.html - [similar]
Construct a new ObjectId 3048
« MongoDB\BSON\ObjectId MongoDB\BSON\ObjectId::getTimestamp » PHP Manual MongoDB\BSON\ObjectId C ... oDB\BSON\ObjectId::__construct() example <?php var_dump (new MongoDB \ BSON \ ObjectId ()); var_dump (new ...
https://man.plustar.jp/php/mongodb-bson-objectid.construct.html - [similar]
phar アーカイブ全体が (.tar.gz/tar.bz などで) 圧縮されている場合に Phar::GZ ある... 3048
« Phar::isBuffering Phar::isFileFormat » PHP Manual Phar phar アーカイブ全体が (.tar.gz/tar.bz な ... try { $phar1 = new Phar ( 'myphar.zip.phar' ); var_dump ( $phar1 -> isCompressed ()); $phar2 = new Phar ( ... 'myuncompressed.tar.phar' ); var_dump ( $phar2 -> isCompressed ()); $phar2 -> compress ( ... Phar :: GZ ); var_dump ( $phar2 -> isCompressed () == Phar :: GZ ); } cat ...
https://man.plustar.jp/php/phar.iscompressed.html - [similar]
トークンがPHPパーサから無視されるかを調べる 3048
« PhpToken::is PhpToken::__toString » PHP Manual PhpToken トークンがPHPパーサから無視されるかを調 ... ?php $echo = new PhpToken ( T_ECHO , 'echo' ); var_dump ( $echo -> isIgnorable ()); // -> bool(false) $spa ... ce = new PhpToken ( T_WHITESPACE , ' ' ); var_dump ( $space -> isIgnorable ()); // -> bool(true) 参考 ...
https://man.plustar.jp/php/phptoken.isignorable.html - [similar]
抽象クラスであるかどうかを調べる 3048
« ReflectionClass::inNamespace ReflectionClass::isAnonymous » PHP Manual ReflectionClass 抽象クラ ... = new ReflectionClass ( 'TestAbstractClass' ); var_dump ( $testClass -> isAbstract ()); var_dump ( $abstra ...
https://man.plustar.jp/php/reflectionclass.isabstract.html - [similar]