wilded
11/30/2018 - 2:11 PM

Array Functions in PHP

Array Functions in PHP

$person['name'] = "Some Name"; // Adds a key element to array $person with the value Some Name
unset($person['name']); //Removes the Key element name from the array $person