document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. class Person {
  3. function __construct() {
  4. print "Konstruktor Person\\n";
  5. }
  6. }
  7. $obj = new Person();
  8. ?>
');