1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/ext/dom/tests/DOMDocument_createAttribute_variation.phpt
2008-12-30 15:57:23 +00:00

15 lines
249 B
PHP

--TEST--
Test DOMDocument::createAttribute() for expected return value
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$dom = new DOMDocument();
$attr = $dom->createAttribute('string');
echo get_class($attr);
?>
--EXPECTF--
DOMAttr