PHP 8.5.0 Alpha 4 available for testing

Voting

: min(seven, four)?
(Example: nine)

The Note You're Voting On

Maciek Ruckgaber <maciekrb at gmai dot com>
20 years ago
after wondering around some time, i just realized something (maybe obvious, not very much for me). Hope helps someone to not waste time as i did :-P

when you have something like:

<?php
$xmlstr
= <<<XML
<?xml version="1.0" encoding="utf-8"?>
<double xmlns="http://foosite.foo/">2328</double>
XML;
?>

you will have the simpleXML object "transformed" to the text() content:

<?php
$xml
= simplexml_load_string($xmlstr);
echo
$xml; // this will echo 2328 (string)
?>

<< Back to user notes page

To Top