compact.phpt 374 B

12345678910111213141516171819202122
  1. --TEST--
  2. compact()
  3. --FILE--
  4. <?php
  5. $çity = "San Francisco";
  6. $state = "CA";
  7. $event = "SIGGRAPH";
  8. $location_vars = array("c\\u0327ity", "state");
  9. $result = compact("event", $location_vars);
  10. var_dump($result);
  11. ?>
  12. --EXPECTF--
  13. Notice: compact(): Undefined variable: c\u0327ity in %s on line %d
  14. array(2) {
  15. ["event"]=>
  16. string(8) "SIGGRAPH"
  17. ["state"]=>
  18. string(2) "CA"
  19. }