|
|
|
|
|
by TekMol
2037 days ago
|
|
It is not more powerful. You cannot do this for example: function hello($name='Joe',$title='dear')
{
echo "Hello $title $name";
}
hello('Sue');
Try here: https://3v4l.org/6MZHhWith your object properties approach, you always have to use the variable "names". |
|