mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
36 lines
745 B
PHP
36 lines
745 B
PHP
--TEST--
|
|
XMLReader::fromUri() - custom constructor with error
|
|
--EXTENSIONS--
|
|
xmlreader
|
|
--FILE--
|
|
<?php
|
|
class CustomXMLReader extends XMLReader {
|
|
public function __construct() {
|
|
throw new Error('nope');
|
|
}
|
|
}
|
|
|
|
try {
|
|
CustomXMLReader::fromUri("nonexistent");
|
|
} catch (Throwable $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
$filename = __DIR__ . '/_fromUri_custom_constructor_error.xml';
|
|
$xmlstring = '<?xml version="1.0" encoding="UTF-8"?>
|
|
<books></books>';
|
|
file_put_contents($filename, $xmlstring);
|
|
|
|
try {
|
|
CustomXMLReader::fromUri($filename);
|
|
} catch (Throwable $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Unable to open source data
|
|
nope
|
|
--CLEAN--
|
|
<?php
|
|
@unlink(__DIR__ . '/_fromUri_custom_constructor_error.xml');
|
|
?>
|