1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/standard/tests/array/extract_variation8.phpt
Antony Dovgal 296147ea6e split the test
2007-08-10 12:30:09 +00:00

27 lines
416 B
PHP

--TEST--
Test extract() function (variation 8)
--FILE--
<?php
/* To show variables with numerical prefixes cannot be extracted */
$var["i"] = 1;
$var["j"] = 2;
$var["k"] = 3;
echo "\n*** Testing for Numerical prefixes ***\n";
var_dump(extract($var));
$var1["m"] = 1;
$var1[2] = 2;
$var1[] = 3;
var_dump ( extract($var1));
echo "\nDone";
?>
--EXPECTF--
*** Testing for Numerical prefixes ***
int(3)
int(1)
Done