Answers for "check comma in string php"

PHP
0

if any comma in string in php

php function strpos return position of string if it's not false or -1 then your string contain character.

$searchForValue = ',';
$stringValue = '115,251';

if( strpos($stringValue, $searchForValue) !== false ) {
     echo "Found";
}
Posted by: Guest on October-26-2020

Code answers related to "check comma in string php"

Browse Popular Code Answers by Language