Answers for "how to check the first character of a string in php"

PHP
14

php get first character of string

$firstStringCharacter = substr("hello", 0, 1);
Posted by: Guest on October-19-2019

Code answers related to "how to check the first character of a string in php"

Browse Popular Code Answers by Language