mirror of
https://github.com/php/php-src.git
synced 2026-04-17 21:11:02 +02:00
For rationale, see https://github.com/php/php-src/pull/6787 Make extension checks lowercase, add a special case for opcache that has internal name not matching .so filename. Extensions migrated in part 2: * dom * exif * fileinfo * ffi
18 lines
332 B
PHP
18 lines
332 B
PHP
--TEST--
|
|
DOMAttr __construct() with no arguments.
|
|
--CREDITS--
|
|
Josh Sweeney <jsweeney@alt-invest.net>
|
|
# TestFest Atlanta 2009-05-14
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
$attr = new DOMAttr();
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
DOMAttr::__construct() expects at least 1 argument, 0 given
|