class foo { function bar() { echo 'Foo is a class, bar is a method'; }}$input = new foo();$input->bar();