Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 20th, 2010 | Syntax: PHP | Size: 0.26 KB | Hits: 52 | Expires: Never
Copy text to clipboard
  1. <?php
  2.         class roadknob {
  3.                 function testme($tt){
  4.                         $ss = $tt + 1;
  5.                         return $ss;
  6.                 }
  7.         }
  8.        
  9.         $heather = new roadknob();
  10.         $sam = new roadknob();
  11.         $rr0 = $heather->testme('69');
  12.         $rr1 = $sam->testme('66');
  13.         echo "# $rr0 #<br>\n";
  14.         echo "# $rr1 #<br>\n";
  15. ?>