Skip to content

Instantly share code, notes, and snippets.

View klaussantana's full-sized avatar

Klauss Santana klaussantana

View GitHub Profile
<?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';
}
}
@klaussantana
klaussantana / simple.xml.creation.php
Created September 11, 2012 23:59
Gerando um arquivo XML no PHP 5.
<?php
$XML = new SimpleXMLElement('<Configuration></Configuration>', null, false);
$XML->addChild('Teste', 'Um bom teste de criação de XML.');
$XML->asXML('teste.xml');
?>