Answers for "get first occurrence of character in string php"

PHP
15

php get first 5 characters of string

$result = substr("Hello How are you", 0, 5); //first 5 chars "Hello"
Posted by: Guest on February-12-2020
0

php find first occurrence in string

#You can use the strpos() function 

$cheese = "cheese";

strpos($cheese, 'h');

#Output: 1
Posted by: Guest on May-29-2021

Code answers related to "get first occurrence of character in string php"

Browse Popular Code Answers by Language