Answers for "php string get all string after last /"

PHP
0

php last of string till /

$string = 'Hello World Again';
$string = explode(' ', $string);
array_pop($string);
$string = implode(' ', $string);
Posted by: Guest on November-07-2019

Code answers related to "php string get all string after last /"

Browse Popular Code Answers by Language