Answers for "how to get letter after my letter using php"

PHP
3

php get string after character

$data = "123_String";    
$whatIWant = substr($data, strpos($data, "_") + 1);    
echo $whatIWant;
Posted by: Guest on April-27-2020

Code answers related to "how to get letter after my letter using php"

Browse Popular Code Answers by Language