PHP String

codinger 22 Apr 2023 | 12:07 pm PHP, PHP String

PHP String Functions

इस अध्याय में हम PHP String के बारे में पढेंगे।

 strlen() - Return the Length of a String

इस function से हम String की Length का पता लगाते हैं।

Example 1.

<php

echo "Hello Codinger";  // outputs 14

?>

Print Preview

14


Example 2.

<php

$x = "PHP Codinger";

echo $x;  // outputs 12

?>

Print Preview

12


str_word_count() - Count Words in a String

इस function से हम String के word को Count करते हैं।

Example-

<?php

echo str_word_count ("PHP Codinger");   // outputs 2

?>

Print Preview

2

PHP Codinger में दो Word है। शब्द PHP में 1 Word है और शब्द Codinger में 1 Word है। इसलिए PHP Codinger शब्द में कुल 2 शब्द (Word) हो गये।


strrev() - Reverse a String

इस function से हम String में पास किये गये शब्दों को दाएं से बाएं लिख सकते हैं।

Example-

$p = "Learn PHP Codinger";

echo strlen ($p);

Print Preview

regnidoC PHP nraeL


strpos() - Search For a Text Within a String

इस function से हम String की Length का पता लगाते हैं।

Example-

echo strpos ("Hello Codinger", "Codinger");

Hello Codinger में C से पहले 6 है। इसमें Space को भी Count किया जाता है।


str_replace() - Replace Text Within a String

इस function से हम String के Text को Replace कर सकते हैं।

Example-

<!DOCTYPE html>
<html>
<body>

<?php
$x = "Dear";
$y = "Pooja";
$z = "I Love Your Dear";
echo str_replace("$x", "$y", "$z");
?> 
 
</body>
</html>

Print Preview

I Love Your Pooja

Share

Related Posts



Comments:-


Please login to comment..