PHP - Describe functions STRSTR() and STRISTR.

Describe functions STRSTR() and STRISTR.

Both the functions are used to find the first occurrence of a string. Parameters includes: input String, string whose occurrence needs to be found, TRUE or FALSE (If TRUE, the functions return the string before the first occurrence.

STRISTR is similar to STRSTR. However, it is case-insensitive.

Example:
strstr ($input_string, string)
PHP - What are the various methods to pass data from one web page to another web page?
PHP - Different methods to pass data from one web page to another....
PHP - Describe how PHP Works.
Describe how PHP Works - Any PHP web page first interacts with the interpreter once a request I sent from the browser...
PHP - Explain how to work with Permissions in PHP.
Explain how to work with Permissions in PHP - Permissions in PHP are very similar to UNIX. Each file has three types of permissions....
Post your comment