Answers for "if last element of string php"

PHP
1

get last word from string php

function getLastWord($string)
    {
        $string = explode(' ', $string);
        $last_word = array_pop($string);
        return $last_word;
    }
Posted by: Guest on February-26-2021

Code answers related to "if last element of string php"

Browse Popular Code Answers by Language