Skip to content

Instantly share code, notes, and snippets.

@violetyk
Created November 29, 2011 03:31
Show Gist options
  • Save violetyk/1403273 to your computer and use it in GitHub Desktop.
Save violetyk/1403273 to your computer and use it in GitHub Desktop.
[php]配列の各要素に対して再帰的に処理を行うarray_wak_recursive
<?php
array_walk_recursive(
$data,
create_function(
'&$val, $key',
'if(in_array($key, array("id", "created", "modified"))) $val = null;')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment