Hey,
How do you predefine functions in PHP like in C/C++?
In C/C++ you write
return_type function_name(type var,type var,....);
return_type function_name(type var,type var,....);
return_type function_name(type var,type var,....);
I tried doing that in PHP and it wanted to see a {
after the function(...)
Thanks