Cocker

Untitled

Jul 31st, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2. class Test
  3. {
  4.     private $test = 0;
  5.  
  6.     public function testfunction()
  7.     {
  8.         $test = 1; 
  9.         echo $test;
  10.     }
  11. }
  12. $obj = new Test;
  13. obj->testfunction(); // -> 1
  14. ?>
Add Comment
Please, Sign In to add comment