Home Answers Viewqa PHP WHAT IS THE FUNCTIONALITY OF THE FUNCTIONS STRSTR() AND STRISTR()?

 
 


brijesh
WHAT IS THE FUNCTIONALITY OF THE FUNCTIONS STRSTR() AND STRISTR()?
1 Answer(s)      2 years and 6 months ago
Posted in : PHP

WHAT IS THE FUNCTIONALITY OF THE FUNCTIONS STRSTR() AND STRISTR()?

View Answers

November 15, 2010 at 11:15 AM


strstr() function is used to return the sub string from first occurrence of string point from the string base.If string point is not found, returns FALSE. stristr() function is also but it is case insensitive.

strstr() example

<?php
$username= 'deepak';
$substring_username = strstr($username, 'p');
echo $substring_username; // prints pak
?>

stristr() example

<?php
$username= 'DEEPAK';
$substring_username = stristr($username, 'p');
echo $substring_username;
// outputs PAK.

Thanks









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.