PHP next() Fonksiyonu
PHP 4PHP 5PHP 7
Dizide sonraki elemanını bulmak için kullanılır.
Yapısı (Syntax)next ( array &$dizi ) : mixed
Parametreler
-
$girdi = $girdi array
( ! ) Notice: Undefined property: stdClass::$description in /home/prototurk.com/public_html/app/view/article-php.php on line 66 Call Stack # Time Memory Function Location 1 0.0001 364440 {main}( ) .../index.php:0 2 0.0031 456040 require( '/home/prototurk.com/public_html/app/controller/category.php' ) .../index.php:101 3 0.0058 475080 require( '/home/prototurk.com/public_html/app/view/article.php' ) .../category.php:34 4 0.0128 625128 parseTemplate( ) .../article.php:112 5 0.0128 625208 preg_replace_callback ( ) .../template.php:126 6 0.0128 625680 bb_json( ) .../template.php:126 7 0.0129 650096 require( '/home/prototurk.com/public_html/app/view/article-php.php' ) .../template.php:213
Dönen Değer
mixed
- Dizinin bulunduğu konumun bir sonrasında eleman varsa o elemanın değerini döndürür, yoksa false döner.
NOT
Bu işlev mantıksal false değeriyle dönebileceği gibi false olarak değerlendirilebilecek mantıksal olmayan bir değerle de dönebilir. Bu işlevden dönen değeri sınamak için === işlecini kullanınız.
Örnekler
next() Fonksiyon Örneği
$sehirler= array('ankara', 'istanbul', 'mugla', 'eskisehir');
$sonuc = current($sehirler); // $sonuc = 'ankara';
$sonuc = next($sehirler); // $sonuc = 'istanbul';
$sonuc = next($sehirler); // $sonuc = 'mugla';