Skip to content

Instantly share code, notes, and snippets.

@pichuang
Created October 29, 2015 12:13
Show Gist options
  • Save pichuang/d6ab719796bc67f2928c to your computer and use it in GitHub Desktop.
Save pichuang/d6ab719796bc67f2928c to your computer and use it in GitHub Desktop.
<?php
$arr = array(0=>1,"aa"=>2, 3, 4);
foreach($arr as $key=>$val){
print($key == "aa" ? 5 : $val);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment