[ create a new paste ] login | about

Link: http://codepad.org/2fGWL4IC    [ raw code | output | fork ]

PHP, pasted on Feb 20:
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php 
 class xyz {
   public $abc = '';
       function test(){
       $this->abc = "world";
      }
}

$a = new xyz();
$a->test();
echo "hello ". $a->abc;

?>


Output:
1
hello world


Create a new paste based on this one


Comments: