Show Output
Example of Removing Duplicate Elements from PHP Array
"moon", "star", "b" => "moon", "star", "sky"); // Deleting the duplicate items $result = array_unique($array); print_r($result); ?>