Answers for "php check is string"

PHP
3

php is string

is_string($var)
Posted by: Guest on June-10-2020
1

php check string

// if you want to test content of a string to match a model

//You should use a regex filter with preg_match who returns 1 or 0

// this filter works for most of cases

/* use this regex */ preg_match("/^[a-z ,.'-]+$/i", your_string);

if you want more regex filters you can make yours on 'https://regex101.com/'
Posted by: Guest on August-06-2021

Browse Popular Code Answers by Language