php get last part of string after character code example
Example 1: get last character of string php
substr("testers", -1); // returns "s"
Example 2: get the string after a character in php
$data = "123_String";
$whatIWant = substr($data, strpos($data, "_") + 1);
echo $whatIWant;