reference/simplexml/examples.xml
a0ae28d3bc85f927c22649ebd9a590b921534b7d
...
...
@@ -217,7 +217,7 @@ My favorite movie.PHP: Behind the Parser
217
217
<title>Comparing Two Elements</title>
218
218
<simpara>
219
219
Two SimpleXMLElements are considered different even if they point to the
220
-
same element since PHP 5.2.0.
220
+
same element.
221
221
</simpara>
222
222
<programlisting role="php">
223
223
<![CDATA[
...
...
@@ -226,7 +226,7 @@ include 'example.php';
226
226

227
227
$movies1 = new SimpleXMLElement($xmlstr);
228
228
$movies2 = new SimpleXMLElement($xmlstr);
229
-
var_dump($movies1 == $movies2); // false since PHP 5.2.0
229
+
var_dump($movies1 == $movies2);
230
230
?>
231
231
]]>
232
232
</programlisting>
...
...
@@ -327,7 +327,7 @@ echo $movies->asXML();
327
327
<example>
328
328
<title>Adding elements and attributes</title>
329
329
<simpara>
330
-
Since PHP 5.1.3, SimpleXML has had the ability to easily add children and
330
+
SimpleXML has had the ability to easily add children and
331
331
attributes.
332
332
</simpara>
333
333
<programlisting role="php">
334
334