strstr() Function in PHP

strstr() function இங்கு நாம் இரண்டு string ஐ argument ஆக அனுப்புகிறோம், அனுப்பிய string அல்லது character ஆனது மற்றொரு string இல் எங்கிருந்து ஆரம்பமாகிறது என்பதை கண்டறிய பயன்படுகிறது. இந்த first occurrence string இல் இருந்து அடுத்தடுத்த string ஐ output ஆக கொடுக்கிறது.

strstr(string,search,before_search)

Note: strstr() function-இல் மூன்று argument அனுபப்படுகிறது. அவைகள் முறையே string, search செய்யவேண்டிய string மூன்றாவது boolean value. மூன்றாவது Optional இதன் value TRUE அல்லது FALSE ஆக அமையும். strstr() function binary-safe மற்றும் case sensitive ஆக இருக்கும்.

Example1

<?php
$input1 = "Doubt kills more dreams than failure ever will";
$input2 = "more";
echo strstr($input1,$input2);   
?>

மேலே உள்ள Example1-ஐ கவனிக்கவும் $input1 என்ற variable-இல் "Doubt kills more dreams than failure ever will" என்ற string மற்றும் $input2 என்ற variable-இல் "more" string -ஆனது கொடுகப்பட்டுள்ளது. strstr() function இல் srting ஐ argument ஆக அனுப்பும்போது $input1 string இல் "more" என்ற string எங்கிருந்து ஆரம்பமாகிறது என கண்டறிந்து அதிலிருந்து அனைத்து string- யும் output ஆக கொடுக்கிறது. இங்கு output "more dreams than failure ever will" என கிடைக்கிறது.

Output:

more dreams than failure ever will

Example2

<?php
$data1 = "The happiness of your life depends on the quality of your thoughts";
$data2 = "life";
echo strstr($data1,$data2,true);   
?>

மேலே உள்ள Example2-ஐ கவனிக்கவும் $data1 என்ற variable-இல் "The happiness of your life depends on the quality of your thoughts" என்ற string மற்றும் $data2 என்ற variable-இல் "life" string மற்றும் மூன்றாவது argument true -ஆனது கொடுகப்பட்டுள்ளது. strstr() function இல் srting ஐ argument ஆக அனுப்பும்போது $input1 string இல் "life" என்ற string எங்கிருந்து ஆரம்பமாகிறது என கண்டறிந்து அதற்கு முன்னால் உள்ள அனைத்து string- யும் output ஆக கொடுக்கிறது.இங்கு output "The happiness of your" என கிடைக்கிறது.

Output:

The happiness of your

Comments