Today, We want to share with you Commonly used PHP String Functions with Example.
In this post we will show you Commonly used PHP functions, hear for string functions in php with examples we will give you demo and example for implement.In this post, we will learn about The Top 15 Most Popular PHP String Functions with an example.
Commonly used PHP String Functions with Example
There are the Following The simple About Commonly used PHP String Functions with Example Full Information With Example and source code.
1. htmlentities()
Example
[php]
bold“;
echo htmlentities($liveQuery);
?>
[/php]
2. Htmlspecialchars()
Example
[php]
Jaydeep”, ENT_QUOTES);
echo $liveQuery;
?>
[/php]
3. strip_tags
Example
[php]
Hello String.
‘;
echo strip_tags($mytxt);
?>
[/php]
[php]
Hello String.
‘;
echo strip_tags($mytxt,’
‘);
?>
[/php]
4. addslashes
Example
[php]
[/php]
5. stripslashes
Example
[php]
[/php]
6. explode
Example
[php]
[/php]
7- implode
PHP implode Example
[php]
[/php]
8- rand()
Example
[php]
[/php]
9- str_replace
Example for str_replace
[php]
[/php]
10- date()
Example:
[php]
[/php]
11. strlen()
Example
[php]
[/php]
12. count()
Example
[php]
[/php]
13. array_combine
Example
[php]
[/php]
[php]
The above example will output:
Array
(
[good] => car
[very good] => mobile
[yellow] => kites
)
[/php]
14. array_multisort
This is an array_multisort Example
[php]
[/php]
[php]
The above example will output:
array(4) {
[0]=> int(0)
[1]=> int(10)
[2]=> int(100)
[3]=> int(100)
}
array(4) {
[0]=> int(4)
[1]=> int(1)
[2]=> int(2)
[3]=> int(3)
}
[/php]
15. array_unique
Example:
[php]
“good”, “very good”, “b” => “good”, “best”, “very good”);
$myresult = array_unique($datainput);
print_r($myresult);
?>
[/php]
[php]
The above example will output:
Array
(
[a] => good
[0] => very good
[1] => best
)
[/php]
16. print_r
Example:
[php]
‘jaydeep’, ‘b’ => ‘keunal’);
print_r ($employee);
?>
[/php]
[php]
The results would be something like:
Array
(
[a] => jaydeep
[b] => keunal
)
[/php]
jQuery 15 Powerful Tips and Tricks for Developers and Web Designer
Read :
Summary
You can also read about AngularJS, ASP.NET, VueJs, PHP.
I hope you get an idea about 16 Basic String Functions in PHP.
I would like to have feedback on my Infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.