php-src/ext/standard/tests/array/compact.phpt
Jani Taskinen a541bb8078 - Fix tests
- Update README.PARAMETER_PARSING_API
2007-11-02 19:41:12 +00:00

25 lines
373 B
PHP

--TEST--
compact()
--INI--
unicode.script_encoding=UTF-8
unicode.output_encoding=UTF-8
--FILE--
<?php
$çity = "San Francisco";
$state = "CA";
$event = "SIGGRAPH";
$location_vars = array("c\u0327ity", "state");
$result = compact("event", $location_vars);
var_dump($result);
?>
--EXPECT--
array(2) {
["event"]=>
string(8) "SIGGRAPH"
["state"]=>
string(2) "CA"
}