[ create a new paste ] login | about

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

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

class Test {
    public function foo() {
        print "foo\n";
    }

    public function bar() {
        $func = 'foo';
        $this->$func();
    }
}

$test = new Test();
$test->bar();

?>


Output:
1
foo


Create a new paste based on this one


Comments: