Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- DomDocument::schemaValidate() - non-existent schema file --CREDITS-- Daniel Convi..
Decoded Output download
--TEST--
DomDocument::schemaValidate() - non-existent schema file
--CREDITS--
Daniel Convissor <[email protected]>
# TestFest 2009 NYPHP
--EXTENSIONS--
dom
--FILE--
<?php
$doc = new DOMDocument;
$doc->load(__DIR__."/book.xml");
$result = $doc->schemaValidate(__DIR__."/non-existent-file");
var_dump($result);
?>
--EXPECTF--
Warning: DOMDocument::schemaValidate(): I/O warning : failed to load external entity "%snon-existent-file" in %s.php on line %d
Warning: DOMDocument::schemaValidate(): Failed to locate the main schema resource at '%s/non-existent-file'. in %s.php on line %d
Warning: DOMDocument::schemaValidate(): Invalid Schema in %s.php on line %d
bool(false)
Did this file decode correctly?
Original Code
--TEST--
DomDocument::schemaValidate() - non-existent schema file
--CREDITS--
Daniel Convissor <[email protected]>
# TestFest 2009 NYPHP
--EXTENSIONS--
dom
--FILE--
<?php
$doc = new DOMDocument;
$doc->load(__DIR__."/book.xml");
$result = $doc->schemaValidate(__DIR__."/non-existent-file");
var_dump($result);
?>
--EXPECTF--
Warning: DOMDocument::schemaValidate(): I/O warning : failed to load external entity "%snon-existent-file" in %s.php on line %d
Warning: DOMDocument::schemaValidate(): Failed to locate the main schema resource at '%s/non-existent-file'. in %s.php on line %d
Warning: DOMDocument::schemaValidate(): Invalid Schema in %s.php on line %d
bool(false)
Function Calls
None |
Stats
MD5 | bbdb05d9006f63dd9f8440b8f59fb4a1 |
Eval Count | 0 |
Decode Time | 83 ms |