How to Solve PHP Fatal error: Allowed memory size of 8388608 bytes exhausted
<?php
$array=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow");
$result=array_flip($array);
print_r($result);
?>
Subscribe to the Email Newsletter