17 lines
380 B
Plaintext
17 lines
380 B
Plaintext
|
|
--TEST--
|
||
|
|
xmlwriter_open_uri with PHP_MAXPATHLEN + 1
|
||
|
|
--EXTENSIONS--
|
||
|
|
xmlwriter
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
$path = str_repeat('a', PHP_MAXPATHLEN + 1);
|
||
|
|
var_dump(xmlwriter_open_uri('file:///' . $path));
|
||
|
|
?>
|
||
|
|
--CREDITS--
|
||
|
|
Koen Kuipers koenk82@gmail.com
|
||
|
|
Theo van der Zee
|
||
|
|
#Test Fest Utrecht 09-05-2009
|
||
|
|
--EXPECTF--
|
||
|
|
Warning: xmlwriter_open_uri(): Unable to resolve file path in %s on line %d
|
||
|
|
bool(false)
|