Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the functionality of the function strstr and stristr?

Answers were Sorted based on User's Feedback



What is the functionality of the function strstr and stristr?..

Answer / arvind pippal(delhi)

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. syntax: strstr
(string base,string point)
examle: <?php
$email = 'arvindpippal@gmail.com';
$domain = strstr($email, '@');
echo $domain;
?>
output: @gmail.com
stristr() does the same thing in Case-insensitive manner

Is This Answer Correct ?    23 Yes 3 No

What is the functionality of the function strstr and stristr?..

Answer / umapathi

strstr-finds the first occurence of a string inside another
string (case-sensitive)
stristr-finds the first occurence of a string inside
another string (case-insensitive)

Is This Answer Correct ?    17 Yes 3 No

Post New Answer

More PHP Interview Questions

How to set a value in session? How to remove data from a session?

0 Answers  


What is use of header() function in php? What the limitation of header()?

0 Answers  


Why many companies are switching their current business language to php? Where php basically used?

0 Answers  


What is the difference between client-side and server-side programming?

0 Answers  


What is put method in php?

0 Answers  


What is the best way to change the key without changing the value of a php array element?

0 Answers  


What is whitespace in html?

0 Answers  


Do while loops php?

0 Answers  


Which is a perfect example of runtime polymorphism?

0 Answers  


how can i upload only pdf files in my website? files has not a pdf extension mantioned

0 Answers  


How data or variable can be receive or send from PHP to HTML page??

3 Answers   TCS,


When to use get and post request?

0 Answers  


Categories