Answers for "get first sentence of a stringphp\"

PHP
1

get first word from string php

function getFirstWord($string)
    {
        $arr = explode(' ', trim($string));
        return isset($arr[0]) ? $arr[0] : $string;
    }
Posted by: Guest on February-26-2021

Code answers related to "get first sentence of a stringphp\"

Browse Popular Code Answers by Language