PHP 8.5.0 Beta 1 available for testing

Voting

: zero plus three?
(Example: nine)

The Note You're Voting On

m0sh3 at hotmail dot com
17 years ago
Be aware of quirks like this one:

<?php

$a
= new SimpleXMLElement('<a><b/></a>');

$a->b = 'test &amp; test';
$a->c = 'test &amp; test';

print_r($a);
/*
OUTPUT:

SimpleXMLElement Object
(
[b] => test & test
[c] => test &amp; test
)
*/

<< Back to user notes page

To Top