php last of string till 2f

Solutions on MaxInterview for php last of string till 2f by the best coders in the world

showing results for - "php last of string till 2f"
Mario
13 Oct 2020
1$string = 'Hello World Again';
2$string = explode(' ', $string);
3array_pop($string);
4$string = implode(' ', $string);