Skip to content
You signed in with another tab or window. to refresh your session.
You signed out in another tab or window. to refresh your session.
You switched accounts on another tab or window. to refresh your session.
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.