$string = "<postcode>5253 </postcode>";
$xml = new SimpleXMLElement($string);
$varname = $xml->getName();
${$varname} = trim($xml);
echo($varname." is ".${$varname}."\n");
echo($varname." is ".$postcode."\n");
Output:
postcode is 5253
postcode is 5253
No comments:
Post a Comment