検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 34 for fruits (0.007 sec.)
配列の内部ポインタを最終要素にセットする 7445
« each extract » PHP Manual 配列 関数 配列の内部ポインタを最終要素にセットする end (PHP 4, PHP 5 ... Iterator を使って下さい。 例 例1 end() の例 <?php $fruits = array( 'リンゴ' , 'バナナ' , 'クランベリー' ); e ... cho end ( $fruits ); // クランベリー ?> 参考 current() - 配列内の現在 ...
https://man.plustar.jp/php/function.end.html - [similar]
現在のエントリが配列あるいはオブジェクトである場合に、そのイテレータを返す 7445
« RecursiveArrayIterator RecursiveArrayIterator::hasChildren » PHP Manual RecursiveArrayIterator ... RecursiveArrayIterator::getChildren() の例 <?php $fruits = array( "a" => "lemon" , "b" => "orange" , array( ... ear" )); $iterator = new RecursiveArrayIterator ( $fruits ); while ( $iterator -> valid ()) { if ( $iterator ...
https://man.plustar.jp/php/recursivearrayiterator.getchildren.html - [similar]
配列の全ての要素に、ユーザー関数を再帰的に適用する 7381
« array_values array_walk » PHP Manual 配列 関数 配列の全ての要素に、ユーザー関数を再帰的に適用す ... weet = array( 'a' => 'apple' , 'b' => 'banana' ); $fruits = array( 'sweet' => $sweet , 'sour' => 'lemon' ); ... " $key holds $item \n" ; } array_walk_recursive ( $fruits , 'test_print' ); ?> 上の例の出力は以下となります。 ...
https://man.plustar.jp/php/function.array-walk-recursive.html - [similar]
値でエントリをソートする 7253
« ArrayObject::append ArrayObject::__construct » PHP Manual ArrayObject 値でエントリをソートする ... を返します。 例 例1 ArrayObject::asort() の例 <?php $fruits = array( "d" => "lemon" , "a" => "orange" , "b" => ... "apple" ); $fruitArrayObject = new ArrayObject ( $fruits ); $fruitArrayObject -> asort (); foreach ( $fruit ...
https://man.plustar.jp/php/arrayobject.asort.html - [similar]
キーでエントリをソートする 7253
« ArrayObject::getIteratorClass ArrayObject::natcasesort » PHP Manual ArrayObject キーでエントリ ... を返します。 例 例1 ArrayObject::ksort() の例 <?php $fruits = array( "d" => "lemon" , "a" => "orange" , "b" => ... "apple" ); $fruitArrayObject = new ArrayObject ( $fruits ); $fruitArrayObject -> ksort (); foreach ( $fruit ...
https://man.plustar.jp/php/arrayobject.ksort.html - [similar]
配列 7189
« 数値形式の文字列 Iterable » PHP Manual 型 配列 配列 PHP の配列は、実際には順番付けられたマップ ... ることが可能です。 例17 再帰および多次元配列 <?php $fruits = array ( "fruits" => array ( "a" => "orange" , "b ... rd" ) ); // 上の配列の内容を取得するための例 echo $fruits [ "holes" ][ 5 ]; // "second" を表示します echo $f ... ruits [ "fruits" ][ "a" ]; // "orange" を表示します unset( $fruits ...
https://man.plustar.jp/php/language.types.array.html - [similar]
配列を生成する 7078
« array_walk arsort » PHP Manual 配列 関数 配列を生成する array (PHP 4, PHP 5, PHP 7, PHP 8) arr ... 法についてご紹介しています。 例1 array() の例 <?php $fruits = array ( "fruits" => array( "a" => "orange" , "b" ...
https://man.plustar.jp/php/function.array.html - [similar]
文字列を出力する 7078
« parse_str printf » PHP Manual String 関数 文字列を出力する print (PHP 4, PHP 5, PHP 7, PHP 8) ... ample" ; print "foo is $foo " ; // foo is example $fruits = [ "lemon" , "orange" , "banana" ]; print implode ... ( " and " , $fruits ); // lemon and orange and banana // 文字列でない値 ...
https://man.plustar.jp/php/function.print.html - [similar]
検索文字列に一致したすべての文字列を置換する 7014
« str_repeat str_rot13 » PHP Manual String 関数 検索文字列に一致したすべての文字列を置換する str ... eam every day となります $phrase = "You should eat fruits, vegetables, and fiber every day." ; $healthy = ar ... ray( "fruits" , "vegetables" , "fiber" ); $yummy = array( "pizz ...
https://man.plustar.jp/php/function.str-replace.html - [similar]
1 つ以上の文字列を出力する 6950
« crypt explode » PHP Manual String 関数 1 つ以上の文字列を出力する echo (PHP 4, PHP 5, PHP 7, P ... xample" ; echo "foo is $foo " ; // foo is example $fruits = [ "lemon" , "orange" , "banana" ]; echo implode ... ( " and " , $fruits ); // lemon and orange and banana // 文字列でない値 ...
https://man.plustar.jp/php/function.echo.html - [similar]
PREV 1 2 3 4 NEXT