php take last character of string code example
Example 1: get last character of string php
substr("testers", -1); // returns "s"
Example 2: php last of string till /
$string = 'Hello World Again';
$string = explode(' ', $string);
array_pop($string);
$string = implode(' ', $string);