mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
16 lines
367 B
PHP
16 lines
367 B
PHP
--TEST--
|
|
DOMDocument::validate() should fail if called statically
|
|
--CREDITS--
|
|
Knut Urdalen <knut@php.net>
|
|
#PHPTestFest2009 Norway 2009-06-09 \o/
|
|
--SKIPIF--
|
|
<?php
|
|
require_once dirname(__FILE__) .'/skipif.inc';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
DOMDocument::validate();
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Non-static method DOMDocument::validate() cannot be called statically in %s on line %d
|