php-src/ext/standard/tests/array/compact.phpt

22 lines
305 B
Plaintext
Raw Normal View History

2006-11-15 22:44:29 +00:00
--TEST--
compact()
2006-11-15 22:44:29 +00:00
--FILE--
<?php
$çity = "San Francisco";
$state = "CA";
$event = "SIGGRAPH";
2006-11-15 22:44:29 +00:00
$location_vars = array("c\u0327ity", "state");
2006-11-15 22:44:29 +00:00
$result = compact("event", $location_vars);
var_dump($result);
2006-11-15 22:44:29 +00:00
?>
--EXPECT--
2006-11-15 22:44:29 +00:00
array(2) {
["event"]=>
string(8) "SIGGRAPH"
["state"]=>
string(2) "CA"
2006-11-15 22:44:29 +00:00
}