Answers for "check if a line contains a character in php"

PHP
0

check if string contains character php

// this method is new with PHP 8 and above
$haystack = "Damn, I wonder if this string contains a comma.";
if (str_contains($haystack, ",")) {
	echo "There is a comma!!";
}
Posted by: Guest on May-27-2021

Code answers related to "check if a line contains a character in php"

Browse Popular Code Answers by Language