“Matriz PHP Remova as teclas de manter valores” Respostas de código

PHP Excluir Array Item por Valor Não Chave

$colors = array("blue","green","red");

//delete element in array by value "green"
if (($key = array_search("green", $colors)) !== false) {
    unset($colors[$key]);
}
Grepper

Matriz PHP Remova o par de valores de chave

unset($array['key-here']);
Thankful Toucan

Matriz PHP Remova as teclas de manter valores


<?php
$array = array("size" => "XL", "color" => "gold");
print_r(array_values($array));
?>
Array
(
    [0] => XL
    [1] => gold
)
Alberto Peripolli

Respostas semelhantes a “Matriz PHP Remova as teclas de manter valores”

Perguntas semelhantes a “Matriz PHP Remova as teclas de manter valores”

Mais respostas relacionadas para “Matriz PHP Remova as teclas de manter valores” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código