PHP How to get first and last name from full name?

PHP How to get first and last name from full name?

December 29, 2022
<?php
$c_name = explode(' ', "Gaurav R Joshi");
echo   $firstName = $c_name[0] ?? '';
echo $lastName = end($c_name);

 

Leave A Comment