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_variation1.phpt
Antony Dovgal 296147ea6e split the test
2007-08-10 12:30:09 +00:00

28 lines
401 B
PHP

--TEST--
Test extract() function (variation 1)
--FILE--
<?php
$val = 4;
$str = "John";
debug_zval_dump($val);
debug_zval_dump($str);
/* Extracting Global Variables */
var_dump(extract($GLOBALS, EXTR_REFS));
debug_zval_dump($val);
debug_zval_dump($str);
echo "\nDone";
?>
--EXPECTF--
long(4) refcount(2)
string(4) "John" refcount(2)
int(%d)
long(4) refcount(2)
string(4) "John" refcount(2)
Done