Results of 61 - 70 of about 389 for foreach (0.007 sec.)
- 新しい RecursiveRegexIterator を作成する 4815
- « RecursiveRegexIterator RecursiveRegexIterator::getChildren » PHP Manual RecursiveRegexIterator
...
^test/' , RecursiveRegexIterator :: ALL_MATCHES ); foreach ( $rRegexIterator as $key1 => $value1 ) { if ( $rR ...
)) { // すべての子を表示します echo "Children: " ; foreach ( $rRegexIterator -> getChildren () as $key => $va ...
-
https://man.plustar.jp/php/recursiveregexiterator.construct.html
- [similar]
- 新しいファイルオブジェクトを作成する 4815
- « SplFileObject SplFileObject::current » PHP Manual SplFileObject 新しいファイルオブジェクトを作
...
ます。 <?php $file = new SplFileObject ( __FILE__ ); foreach ( $file as $line_num => $line ) { echo "Line $line ...
is $file = new SplFileObject(__FILE__); Line 2 is foreach ($file as $line_num => $line) { Line 3 is echo "Li ...
-
https://man.plustar.jp/php/splfileobject.construct.html
- [similar]
- 与えられた XPath 式を評価する 4728
- « DOMXPath::evaluate DOMXPath::registerNamespace » PHP Manual DOMXPath 与えられた XPath 式を評価
...
= "en"]' ; $entries = $xpath -> query ( $query ); foreach ( $entries as $entry ) { echo "Found { $entry -> p ...
; $entries = $xpath -> query ( $query , $tbody ); foreach ( $entries as $entry ) { echo "Found { $entry -> p ...
-
https://man.plustar.jp/php/domxpath.query.html
- [similar]
- データの比較にコールバック関数を用い、配列の差を計算する 4728
- « array_udiff_uassoc array_uintersect_assoc » PHP Manual 配列 関数 データの比較にコールバック関数
...
dnight' ); $interval = new DateInterval ( 'P1D' ); foreach (new DatePeriod ( $start , $interval , $end ) as $ ...
vailable on the following days this week...\n\n" ; foreach ( $myCalendar -> checkAvailability () as $free ) { ...
I'm busy on the following days this week...\n\n" ; foreach ( $myCalendar -> booked as $booked ) { echo $booke ...
-
https://man.plustar.jp/php/function.array-udiff.html
- [similar]
- ベジエ曲線を描画する 4728
- « ImagickDraw::arc ImagickDraw::circle » PHP Manual ImagickDraw ベジエ曲線を描画する ImagickDraw
...
5 ], [ 'x' => 90.0 * 5 , 'y' => 40.0 * 5 ], ], ]; foreach ( $smoothPointsSet as $points ) { $draw -> bezier ...
=> 40 * 5 ], ] ]; $draw -> translate ( 0 , 200 ); foreach ( $disjointPoints as $points ) { $draw -> bezier ( ...
-
https://man.plustar.jp/php/imagickdraw.bezier.html
- [similar]
- 接続を問い合わせる 4728
- « mysqli::ping mysqli::prepare » PHP Manual mysqli 接続を問い合わせる mysqli::poll mysqli_poll (
...
d = 0 ; do { $links = $errors = $reject = array(); foreach ( $all_links as $link ) { $links [] = $errors [] = ...
( $links , $errors , $reject , 1 )) { continue; } foreach ( $links as $link ) { if ( $result = $link -> reap ...
-
https://man.plustar.jp/php/mysqli.poll.html
- [similar]
- 複数の行セットを返す文ハンドラで次の行セットに移動する 4728
- « PDOStatement::getIterator PDOStatement::rowCount » PHP Manual PDOStatement 複数の行セットを返す
...
et (& $rowset , $i ) { print "Result set $i :\n" ; foreach ( $rowset as $row ) { foreach ( $row as $col ) { p ...
-
https://man.plustar.jp/php/pdostatement.nextrowset.html
- [similar]
- 壊れたアーカイブのオープンを許可するかどうかを設定する 4728
- « RarArchive::open RarArchive::__toString » PHP Manual RarArchive 壊れたアーカイブのオープンを許
...
null , 'retnull' ); $a -> setAllowBroken ( true ); foreach ( $a -> getEntries () as $e ) { echo " $e \n" ; } ...
, 'retnull' ); rar_allow_broken_set ( $a , true ); foreach ( rar_list ( $a ) as $e ) { echo " $e \n" ; } var_ ...
-
https://man.plustar.jp/php/rararchive.setallowbroken.html
- [similar]
- Iterator インターフェイス 4642
- « Traversable Iterator::current » PHP Manual 定義済みのインターフェイスとクラス Iterator インター
...
さい。 例 例1 基本的な使用法 この例は、イテレータで foreach を使ったときに、どんな順番でメソッドが呼ばれるかを ...
[ $this -> position ]); } } $it = new myIterator ; foreach( $it as $key => $value ) { var_dump ( $key , $valu ...
-
https://man.plustar.jp/php/class.iterator.html
- [similar]
- 新しい DatePeriod オブジェクトを作成する 4642
- « DatePeriod DatePeriod::getDateInterval » PHP Manual DatePeriod 新しい DatePeriod オブジェクトを
...
をすると、 // 期間内のすべての発生日が表示されます。 foreach ( $period as $date ) { echo $date -> format ( 'Y-m ...
ただし、今回の場合は 2012-07-01 が表示されません。 foreach ( $period as $date ) { echo $date -> format ( 'Y-m ...
-
https://man.plustar.jp/php/dateperiod.construct.html
- [similar]