<?php function test() { return 'Hello World'; } function testFnGetArgs() { print_r(func_get_args()); } function sayHelloTo(string $var) { return 'Hello ' . $var; } echo test(0); echo testFnGetArgs(1,2,3); echo sayHelloTo('me');
You have javascript disabled. You will not be able to edit any code.