Answers for "first element php"

PHP
2

get first element of array php

array_values($array)[0];
Posted by: Guest on May-31-2021
2

php get first element of array

<?php
$stack = array("orange", "banana", "apple", "raspberry");
$fruit = array_shift($stack); //Remove "orange" from array and return it
print_r($stack);
/** OUTPUT:
Array
(
    [0] => banana
    [1] => apple
    [2] => raspberry
)
*/
?>
Posted by: Guest on April-22-2021
0

get firstwod php

$dis=$mysqli->query("select * from article");
while ($diss = $dis->fetch_assoc()) {
 
  $t=$diss['title'];

$abbreviation = explode(' ', trim($t ))[0];
echo $abbreviation; 
echo'</br>'; // will print Hello 
}
Posted by: Guest on October-19-2021

Browse Popular Code Answers by Language