How to Get First Element of Array in PHP?

I will use array_shift() and array_values() function to get first element of array using php. so, let’s see the simple full Source code of it.

Get First Element of Array in PHP

index.php


Output:

string(3) "com"

Leave a Comment