PHP

PHP String handling functions

we have a lot of php predefined constants for string handling. lets have a look on few of them strlen() this function was used to find the length of the string. Syntax: strlen(variable name) str_replace() used to replace a part of string with another string. Syntax: str_replace(search,replace,[number of replaces]) str_ireplace()

Read More...