PHP Remove Specific Element From An Array PHP February 4, 2017 Pramod T P Leave a comment Following code will help to remove a particular element from an array <?php $appliedRuleIs = array(370,369,400,500); if (($key = array_search(‘369’, $appliedRuleIs)) !== false) { unset($appliedRuleIs[$key]); } ?>