Skip to content

Instantly share code, notes, and snippets.

@abel-masila
Created June 24, 2018 16:58
Show Gist options
  • Save abel-masila/83a769778dc97dea8bb1bf0f987ebef2 to your computer and use it in GitHub Desktop.
Save abel-masila/83a769778dc97dea8bb1bf0f987ebef2 to your computer and use it in GitHub Desktop.
<?php
// example code
$input = array("a"=>1, "b"=>2, "c"=>3, "d"=>4, "e"=>5);
$output = array_slice($input, 0, 4,true); // returns "a", "b", and "c"
print_r($output);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment