Skip to content

Instantly share code, notes, and snippets.

@slav123
Created October 2, 2012 10:19
Show Gist options
  • Save slav123/3818033 to your computer and use it in GitHub Desktop.
Save slav123/3818033 to your computer and use it in GitHub Desktop.
grab id's from table
array_walk_recursive($this->data['invoices'], array($this, '_grab_ids'));
private function _grab_ids($item, $arr_key) {
if ($arr_key == 'id') {
$this->data['ids'][] = $item;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment