Page 1 of 1

Functions i php

Posted: Sat Dec 24, 2011 6:43 am
by alkakapoor48
How we can use the inbuilt functions in php?From where we can call these inbuilt functions?

Re: Functions i php

Posted: Sat Dec 24, 2011 10:59 am
by social_experiment
Built-in functions are called like this

Code: Select all

<?php
 echo strlen('word');
 // will display 4