bug48204.phpt 380 B

12345678910111213141516
  1. --TEST--
  2. xmlwriter_open_uri with PHP_MAXPATHLEN + 1
  3. --EXTENSIONS--
  4. xmlwriter
  5. --FILE--
  6. <?php
  7. $path = str_repeat('a', PHP_MAXPATHLEN + 1);
  8. var_dump(xmlwriter_open_uri('file:///' . $path));
  9. ?>
  10. --CREDITS--
  11. Koen Kuipers koenk82@gmail.com
  12. Theo van der Zee
  13. #Test Fest Utrecht 09-05-2009
  14. --EXPECTF--
  15. Warning: xmlwriter_open_uri(): Unable to resolve file path in %s on line %d
  16. bool(false)