Skip to content

Instantly share code, notes, and snippets.

@ruliarmando
Created May 15, 2013 09:56
Show Gist options
  • Save ruliarmando/5582886 to your computer and use it in GitHub Desktop.
Save ruliarmando/5582886 to your computer and use it in GitHub Desktop.
<?php
$arrai = array('1'=>'banana', '2'=>'orange');
array_unshift($arrai, 'watermelon');
echo "<pre>";
print_r($arrai);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment