Answers for "how to find a text in a string in php"

PHP
1

php find text in variable

if(strpos($comments, 'http://') !== false) {
Posted by: Guest on January-24-2021
0

php find string in string

$pos = strpos("find the position of X in here", "X");
Posted by: Guest on March-16-2021

Code answers related to "how to find a text in a string in php"

Browse Popular Code Answers by Language