Skip to content

Instantly share code, notes, and snippets.

@Timber232
Created August 27, 2013 19:27
Show Gist options
  • Save Timber232/6357916 to your computer and use it in GitHub Desktop.
Save Timber232/6357916 to your computer and use it in GitHub Desktop.
PHP Compact
<?php
$a = 'apple';
$b = 'bone';
$c = 'cat';
$compacted = compact('a', 'b', 'c');
var_dump($compacted);
/*
* Result:
* array(3) {
* ["a"]=> string(5) "apple"
* ["b"]=> string(4) "bone"
* ["c"]=> string(3) "cat"
* }
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment