Well its very boring at the moment, and i can see a few web programmers are online
So i thought (to some peoples displeasure) that it would be fun to make a thread, letting people explain some functions etc.
And of course YES you can go to php.net, but some people find the site of it scary (although its a fit resource).
There are many functions that some people may know which others may have never heard of.
YOU MAY POST DEFINITIONS OFF OTHER SITES, BUT YOU MUST CREDIT THEM.
I will start off nice and easy
echo();
Outputs all parameters.PHP Code:<?PHP
echo "Hello world!";
?>
echo() is not actually a function (it is a language construct), so you are not required to use parentheses with it. echo() (unlike some other language constructs) does not behave like a function, so it cannot always be used in the context of a function. Additionally, if you want to pass more than one parameter to echo(), the parameters must not be enclosed within parentheses.
TAKEN FROM PHP.NET







Reply With Quote





