17 lines
314 B
PHP
17 lines
314 B
PHP
--TEST--
|
|
Bug #41175 (addAttribute() fails to add an attribute with an empty value)
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
|
|
$xml = new SimpleXmlElement("<img></img>");
|
|
$xml->addAttribute("src", "foo");
|
|
$xml->addAttribute("alt", "");
|
|
echo $xml->asXML();
|
|
|
|
?>
|
|
--EXPECT--
|
|
<?xml version="1.0"?>
|
|
<img src="foo" alt=""/>
|