[ create a new paste ] login | about

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

PHP, pasted on Jun 25:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class Test
{
    public $test = "yay!";
    
    function func($var)
    {   
        echo $this->$var;
    }
}

$t = new Test();

$t->func('test');
$t->func('woo');


Output:
1
yay!


Create a new paste based on this one


Comments: