Voting

: min(one, five)?
(Example: nine)

The Note You're Voting On

James at enfsolar dot com
5 years ago
<?php

class MyClass{

public function
hello($str)

{

echo
'hello ' . $str;

}

}

$obj = new MyClass();

[
$obj, 'hello']('World'); // the array can be called as a function

<< Back to user notes page

To Top