Answers for "check if char is on the same position as string php"

PHP
1

php check if string contains a char

$haystack = 'This is my haystack that we shall check'
$has_A = strpos($haystack, 'A') !== false;
$has_a = strpos($haystack, 'a') !== false;
Posted by: Guest on August-04-2020
0

strpos

$mystr = 'abc';
$findMe   = 'a';
$position = strpos($mystr, $findMe);
Posted by: Guest on October-21-2020

Code answers related to "check if char is on the same position as string php"

Browse Popular Code Answers by Language