検索

phrase: max: clip:
target: order:
Results of 521 - 530 of about 1200 for var (0.031 sec.)
オブジェクトがストレージ内に存在するかどうかを調べる 2792
« SplObjectStorage::next SplObjectStorage::offsetGet » PHP Manual SplObjectStorage オブジェクトが ... Class ; $o2 = new StdClass ; $s -> attach ( $o1 ); var_dump ( $s -> offsetExists ( $o1 )); // isset($s[$o ... 1]) と同等 var_dump ( $s -> offsetExists ( $o2 )); // isset($s[$o ...
https://man.plustar.jp/php/splobjectstorage.offsetexists.html - [similar]
オブジェクトに関連づけられたデータを返す 2792
« SplObjectStorage::offsetExists SplObjectStorage::offsetSet » PHP Manual SplObjectStorage オブジ ... ass ; $s [ $o1 ] = "hello" ; $s -> attach ( $o2 ); var_dump ( $s -> offsetGet ( $o1 )); // $s[$o1] と同等 ... var_dump ( $s -> offsetGet ( $o2 )); // $s[$o2] と同等 ...
https://man.plustar.jp/php/splobjectstorage.offsetget.html - [similar]
別のストレージに含まれているオブジェクトを現在のストレージから取り除く 2792
« SplObjectStorage::offsetUnset SplObjectStorage::removeAllExcept » PHP Manual SplObjectStorage ... rage (); $b [ $o1 ] = "bar" ; $b [ $o2 ] = "gee" ; var_dump ( count ( $b )); $b -> removeAll ( $a ); var_ ...
https://man.plustar.jp/php/splobjectstorage.removeall.html - [similar]
Gets the current stomp session ID 2792
« Stomp::getReadTimeout Stomp::hasFrame » PHP Manual Stomp Gets the current stomp session ID Sto ... e( 'Connection failed: ' . $e -> getMessage ()); } var_dump ( $stomp -> getSessionId ()); /* close connec ... 'Connection failed: ' . stomp_connect_error ()); } var_dump ( stomp_get_session_id ( $link )); /* close c ...
https://man.plustar.jp/php/stomp.getsessionid.html - [similar]
スカラー型の値を列挙型にマップするか、null を返す 2763
« BackedEnum::from コンテキストオプションとパラメータ » PHP Manual BackedEnum スカラー型の値を列 ... ase Spades = 'S' ; } $h = Suit :: tryFrom ( 'H' ); var_dump ( $h ); $b = Suit :: tryFrom ( 'B' ) ?? Suit ... :: Spades ; var_dump ( $b ); ?> 上の例の出力は以下となります。 enu ...
https://man.plustar.jp/php/backedenum.tryfrom.html - [similar]
CURLStringFile オブジェクトを作る 2763
« CURLStringFile Event » PHP Manual CURLStringFile CURLStringFile オブジェクトを作る CURLStringF ... の例 <?php /* http://example.com/upload.php: <?php var_dump($_FILES); var_dump(file_get_contents($_FILES[ ...
https://man.plustar.jp/php/curlstringfile.construct.html - [similar]
基底ノード型を作成する際に使用する拡張クラスを登録する 2763
« DOMDocument::normalizeDocument DOMDocument::relaxNGValidate » PHP Manual DOMDocument 基底ノード ... -> getElementsByTagName ( "child" )-> item ( 0 ); var_dump ( get_class ( $element )); // __toString メソ ... // このノードの現在のオーナーは myDOMDocument です var_dump ( get_class ( $child -> ownerDocument )); // ... の新しいオーナーは myOtherDOMDocument に変わりました var_dump ( get_class ( $child -> ownerDocument )); ?> ...
https://man.plustar.jp/php/domdocument.registernodeclass.html - [similar]
Reduces the map to a single value using a callback function 2763
« Ds\Map::putAll Ds\Map::remove » PHP Manual Map Reduces the map to a single value using a callb ... ry , $key , $value ) { return $carry * $value ; }; var_dump ( $map -> reduce ( $callback , 5 )); // Itera ... w \ Ds \ Map ([ "a" => 1 , "b" => 2 , "c" => 3 ]); var_dump ( $map -> reduce (function( $carry , $key , $ ...
https://man.plustar.jp/php/ds-map.reduce.html - [similar]
Reduces the sequence to a single value using a callback function 2763
« Ds\Sequence::push Ds\Sequence::remove » PHP Manual Sequence Reduces the sequence to a single v ... n( $carry , $value ) { return $carry * $value ; }; var_dump ( $sequence -> reduce ( $callback , 5 )); // ... php $sequence = new \ Ds \ Vector ([ 1 , 2 , 3 ]); var_dump ( $sequence -> reduce (function( $carry , $va ...
https://man.plustar.jp/php/ds-sequence.reduce.html - [similar]
Reduces the set to a single value using a callback function 2763
« Ds\Set::merge Ds\Set::remove » PHP Manual Set Reduces the set to a single value using a callba ... n( $carry , $value ) { return $carry * $value ; }; var_dump ( $set -> reduce ( $callback , 5 )); // Itera ... ample <?php $set = new \ Ds \ Set ([ 1 , 2 , 3 ]); var_dump ( $set -> reduce (function( $carry , $value ) ...
https://man.plustar.jp/php/ds-set.reduce.html - [similar]