document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. function test()
  3. {
  4. $a=0;
  5. $a=$a+1;
  6. return "Mencoba pemanggilan ke-$a fungsi test() <br />";
  7. }
  8.  
  9. echo test();
  10. echo test();
  11. echo test();
  12. echo test();
  13. ?>
');