Skip to content

Instantly share code, notes, and snippets.

View dpchamps's full-sized avatar

Dave Campion dpchamps

View GitHub Profile
<?php
$peoples = array(
array("name" => "jeffrey", "age" => 28),
array("name" => "john", "age" => 20)
);
// the common way
function array_pluck($toPluck, $arr) {
$ret = array();
foreach($arr as $item) {