[ create a new paste ] login | about

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

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

class Bar
{
  public function foo()
  {
    echo 'hello';
  }

  public function call()
  {
    call_user_func(array($this, 'foo'));
  }
}

$bar = new Bar();
$bar->call();


Output:
1
hello


Create a new paste based on this one


Comments: