検索

phrase: max: clip:
target: order:
Results of 401 - 410 of about 1070 for Dump (0.102 sec.)
現在の SimpleXML エントリを返す 2982
« SimpleXMLIterator SimpleXMLIterator::getChildren » PHP Manual SimpleXMLIterator 現在の SimpleX ... sics</book><book>XML basics</book></books>' ); var_dump ( $xmlIterator -> current ()); $xmlIterator -> rew ... ind (); // 最初の要素に巻き戻します var_dump ( $xmlIterator -> current ()); ?> 上の例の出力は以 ...
https://man.plustar.jp/php/simplexmliterator.current.html - [similar]
リンク先を取得する 2982
« SplFileInfo::getInode SplFileInfo::getMTime » PHP Manual SplFileInfo リンク先を取得する SplFil ... ieber/workspace' ); if ( $info -> isLink ()) { var_dump ( $info -> getLinkTarget ()); var_dump ( $info -> ...
https://man.plustar.jp/php/splfileinfo.getlinktarget.html - [similar]
オブジェクトの参照先が通常のファイルであるかどうかを調べる 2982
« SplFileInfo::isExecutable SplFileInfo::isLink » PHP Manual SplFileInfo オブジェクトの参照先が通 ... の例 <?php $info = new SplFileInfo ( __FILE__ ); var_dump ( $info -> isFile ()); $info = new SplFileInfo ( d ... irname ( __FILE__ )); var_dump ( $info -> isFile ()); ?> 上の例の出力は、 たとえば ...
https://man.plustar.jp/php/splfileinfo.isfile.html - [similar]
PHP の配列を SplFixedArray インスタンスにインポートする 2982
« SplFixedArray::current SplFixedArray::getSize » PHP Manual SplFixedArray PHP の配列を SplFixed ... fromArray (array( 1 => 1 , 0 => 2 , 3 => 3 )); var_dump ( $fa ); $fa = SplFixedArray :: fromArray (array( ... 1 => 1 , 0 => 2 , 3 => 3 ), false ); var_dump ( $fa ); ?> 上の例の出力は以下となります。 object( ...
https://man.plustar.jp/php/splfixedarray.fromarray.html - [similar]
オブジェクトをストレージに追加する 2982
« SplObjectStorage::addAll SplObjectStorage::contains » PHP Manual SplObjectStorage オブジェクト ... $o2 , "hello" ); // $s[$o2] = "hello"; と同等 var_dump ( $s [ $o1 ]); var_dump ( $s [ $o2 ]); ?> 上の例の ...
https://man.plustar.jp/php/splobjectstorage.attach.html - [similar]
ストレージに特定のオブジェクトが含まれるかどうかを調べる 2982
« SplObjectStorage::attach SplObjectStorage::count » PHP Manual SplObjectStorage ストレージに特定 ... ew SplObjectStorage (); $s [ $o1 ] = "hello" ; var_dump ( $s -> contains ( $o1 )); var_dump ( $s -> contai ...
https://man.plustar.jp/php/splobjectstorage.contains.html - [similar]
ストレージ内のオブジェクトの数を返す 2982
« SplObjectStorage::contains SplObjectStorage::current » PHP Manual SplObjectStorage ストレージ内 ... ); $s -> attach ( $o2 ); $s -> attach ( $o1 ); var_dump ( $s -> count ()); var_dump ( count ( $s )); ?> 上 ...
https://man.plustar.jp/php/splobjectstorage.count.html - [similar]
次のエントリに移動する 2982
« SplObjectStorage::key SplObjectStorage::offsetExists » PHP Manual SplObjectStorage 次のエントリ ... ject = $s -> current (); // current($s) と同等 var_dump ( $index ); var_dump ( $object ); $s -> next (); } ...
https://man.plustar.jp/php/splobjectstorage.next.html - [similar]
ストレージからオブジェクトを取り除く 2982
« SplObjectStorage::offsetSet SplObjectStorage::removeAll » PHP Manual SplObjectStorage ストレー ... new SplObjectStorage (); $s -> attach ( $o ); var_dump ( count ( $s )); $s -> offsetUnset ( $o ); // unse ... t($s[$o]) と同等 var_dump ( count ( $s )); ?> 上の例の出力は、 たとえば以下の ...
https://man.plustar.jp/php/splobjectstorage.offsetunset.html - [similar]
イテレータをストレージの最初の要素に巻き戻す 2982
« SplObjectStorage::removeAllExcept SplObjectStorage::serialize » PHP Manual SplObjectStorage イ ... / current($s) と同等 $data = $s -> getInfo (); var_dump ( $object ); var_dump ( $data ); $s -> next (); } ...
https://man.plustar.jp/php/splobjectstorage.rewind.html - [similar]