Answers for "get substring in php after certain character"

PHP
2

get the string after a character in php

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

Code answers related to "get substring in php after certain character"

Browse Popular Code Answers by Language