File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / array / sizeof_variation3.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:03 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
Test sizeof() function : usage variations - checking for infinite recursion in COUNT_RECURSIVE mode 
--FILE--
<?php
/* Prototype  : int sizeof($mixed var[, int $mode])
 * Description: Counts an elements in an array. If Standard PHP library is installed,
 * it will return the properties of an object.
 * Source code: ext/standard/basic_functions.c
 * Alias to functions: count()
 */

echo "*** Testing sizeof() : usage variations ***\n";

echo "-- Testing sizeof() for infinite recursion with arrays as argument in COUNT_RECURSIVE mode --\n";

$array2 = array ( "Hi", "Hello",@$a);
$array3 = array( 'hi', 'hello');
$a = array ( 1, @$array1, $array2, $array3);
$array1 = array( array(1, 2), $a);
$array4 = array( 100, @$array4);

var_dump( sizeof($array1, COUNT_RECURSIVE) );
echo "\n";
var_dump( sizeof($array4, COUNT_RECURSIVE) );

echo "Done";
?>
--EXPECTF--
*** Testing sizeof() : usage variations ***
-- Testing sizeof() for infinite recursion with arrays as argument in COUNT_RECURSIVE mode --
int(13)

int(2)
Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>