VOOZH about

URL: https://gist.github.com/klaussantana

⇱ klaussantana’s gists · GitHub


Skip to content
Sign in Sign up

Instantly share code, notes, and snippets.

<?PHP
/****
* stdClass Inheritance Failure
* ================================================================================
*
* This example shows how stdClass is not inherited in classes definitions that
* do not explicit it.
*
*/
<?php
class MinhaClasse
{
public
function HelloWorld()
{
echo 'Hello World';
}
}
<?php
$XML = new SimpleXMLElement('<Configuration></Configuration>', null, false);
$XML->addChild('Teste', 'Um bom teste de criação de XML.');
$XML->asXML('teste.xml');
?>
You can’t perform that action at this time.