“Obtener FirstWod Php” Código de respuesta

Obtenga el primer elemento de matriz PHP

array_values($array)[0];
Sparkling Swan

PHP Obtenga el primer elemento de matriz

$colors = array(2=>"blue",3 =>"green",1=>"red");
$firstValue = reset($colors); //blue
$firstKey = key($colors); //2
Grepper

Obtener 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 
}
Yucky Yak

Respuestas similares a “Obtener FirstWod Php”

Preguntas similares a “Obtener FirstWod Php”

Más respuestas relacionadas con “Obtener FirstWod Php” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código