Answers for "array unset in php"

PHP
5

php unset array key

unset($dataArray['key']);
Posted by: Guest on June-01-2020
14

php unset array element

//Delete array items with unset(no re-index) or array_splice(re-index)
$colors = array("red","blue","green");                             
unset($colors[1]);//remove second element, do not re-index array

$colors = array("red","blue","green");
array_splice($colors, 1, 1); //remove second element, re-index array
Posted by: Guest on August-06-2019
3

php unset

// Destroy a variable
<?php
unset ($var1, $var2.... )
?>
Posted by: Guest on April-14-2020
0

how to delete item from array php

$array = [0 => "a", 1 => "b", 2 => "c"];
unset($array[1]);
Posted by: Guest on October-20-2020
0

remove array values php

array_splice(array, start, length, array)
Posted by: Guest on November-03-2020

Browse Popular Code Answers by Language