検索

phrase: max: clip:
target: order:
Results of 391 - 400 of about 1200 for var (0.103 sec.)
Returns the sum of all values in the sequence 2878
« Ds\Sequence::sorted Ds\Sequence::unshift » PHP Manual Sequence Returns the sum of all values i ... php $sequence = new \ Ds \ Vector ([ 1 , 2 , 3 ]); var_dump ( $sequence -> sum ()); ?> 上の例の出力は、 た ... p $sequence = new \ Ds \ Vector ([ 1 , 2.5 , 3 ]); var_dump ( $sequence -> sum ()); ?> 上の例の出力は、 た ...
https://man.plustar.jp/php/ds-sequence.sum.html - [similar]
Joins all values together as a string 2878
« Ds\Set::isEmpty Ds\Set::jsonSerialize » PHP Manual Set Joins all values together as a string D ... new \ Ds \ Set ([ "a" , "b" , "c" , 1 , 2 , 3 ]); var_dump ( $set -> join ( "|" )); ?> 上の例の出力は、 ... new \ Ds \ Set ([ "a" , "b" , "c" , 1 , 2 , 3 ]); var_dump ( $set -> join ()); ?> 上の例の出力は、 たとえ ...
https://man.plustar.jp/php/ds-set.join.html - [similar]
Returns the sum of all values in the set 2878
« Ds\Set::sorted Ds\Set::toArray » PHP Manual Set Returns the sum of all values in the set Ds\Se ... ample <?php $set = new \ Ds \ Set ([ 1 , 2 , 3 ]); var_dump ( $set -> sum ()); ?> 上の例の出力は、 たとえ ... ple <?php $set = new \ Ds \ Set ([ 1 , 2.5 , 3 ]); var_dump ( $set -> sum ()); ?> 上の例の出力は、 たとえ ...
https://man.plustar.jp/php/ds-set.sum.html - [similar]
Joins all values together as a string 2878
« Ds\Vector::isEmpty Ds\Vector::jsonSerialize » PHP Manual Vector Joins all values together as a ... w \ Ds \ Vector ([ "a" , "b" , "c" , 1 , 2 , 3 ]); var_dump ( $vector -> join ( "|" )); ?> 上の例の出力は ... w \ Ds \ Vector ([ "a" , "b" , "c" , 1 , 2 , 3 ]); var_dump ( $vector -> join ()); ?> 上の例の出力は、 た ...
https://man.plustar.jp/php/ds-vector.join.html - [similar]
Returns the sum of all values in the vector 2878
« Ds\Vector::sorted Ds\Vector::toArray » PHP Manual Vector Returns the sum of all values in the ... <?php $vector = new \ Ds \ Vector ([ 1 , 2 , 3 ]); var_dump ( $vector -> sum ()); ?> 上の例の出力は、 たと ... php $vector = new \ Ds \ Vector ([ 1 , 2.5 , 3 ]); var_dump ( $vector -> sum ()); ?> 上の例の出力は、 たと ...
https://man.plustar.jp/php/ds-vector.sum.html - [similar]
バイナリのデータを16進表現に変換する 2878
« addslashes chop » PHP Manual String 関数 バイナリのデータを16進表現に変換する bin2hex (PHP 4, ... ex() の例 <?php $hex = bin2hex ( 'Hello world!' ); var_dump ( $hex ); var_dump ( hex2bin ( $hex )); ?> 上 ...
https://man.plustar.jp/php/function.bin2hex.html - [similar]
コマンドライン引数のリストからオプションを取得する 2878
« getmyuid getrusage » PHP Manual PHP オプション/情報 関数 コマンドライン引数のリストからオプショ ... クリプト example.php $options = getopt ( "f:hp:" ); var_dump ( $options ); ?> shell> php example.php -fval ... し ); $options = getopt ( $shortopts , $longopts ); var_dump ( $options ); ?> shell> php example.php -f "v ... スクリプト example.php $options = getopt ( "abc" ); var_dump ( $options ); ?> shell> php example.php -aaac ... ; $pos_args = array_slice ( $argv , $rest_index ); var_dump ( $pos_args ); shell> php example.php -a 1 -b ...
https://man.plustar.jp/php/function.getopt.html - [similar]
ローカルストリームかどうかを調べる 2878
« stream_get_wrappers stream_isatty » PHP Manual ストリーム 関数 ローカルストリームかどうかを調べ ... stream_is_local() の例 基本的な使用例です。 <?php var_dump ( stream_is_local ( "http://example.com" )); ...
https://man.plustar.jp/php/function.stream-is-local.html - [similar]
Gets value of class or instance property 2878
« uopz_get_mock uopz_get_return » PHP Manual Uopz 関数 Gets value of class or instance property ... Bar = 10 ; private $bar = 100 ; } $foo = new Foo ; var_dump ( uopz_get_property ( 'Foo' , 'staticBar' )); ... var_dump ( uopz_get_property ( $foo , 'bar' )); ?> 上の ...
https://man.plustar.jp/php/function.uopz-get-property.html - [similar]
配列構造体に XML データを処理する 2878
« xml_get_error_code xml_parse » PHP Manual XML パーサ 関数 配列構造体に XML データを処理する xm ... 分子オブジェクトの配列に代入 <?php class AminoAcid { var $name ; // aa name var $symbol ; // three letter s ... ymbol var $code ; // one letter code var $type ; // hydropho ...
https://man.plustar.jp/php/function.xml-parse-into-struct.html - [similar]