mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
16 lines
329 B
PHP
16 lines
329 B
PHP
--TEST--
|
|
xmlwriter_open_uri with non existing file
|
|
--EXTENSIONS--
|
|
xmlwriter
|
|
--FILE--
|
|
<?php
|
|
var_dump(xmlwriter_open_uri('foo/bar.tmp'));
|
|
?>
|
|
--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)
|