summaryrefslogtreecommitdiff
path: root/ext/simplexml/tests/bug41175.phpt
blob: 51181d29c03660b85853c63cc622aabeda26ea31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #41175 (addAttribute() fails to add an attribute with an empty value)
--FILE--
<?php

$xml = new SimpleXmlElement("<img></img>");
$xml->addAttribute("src", "foo");
$xml->addAttribute("alt", "");
echo $xml->asXML();

echo "Done\n";
?>
--EXPECT--	
<?xml version="1.0"?>
<img src="foo" alt=""/>
Done