Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sharifbdp/34fb660adcc45c17dafe2522166621e8 to your computer and use it in GitHub Desktop.
Save sharifbdp/34fb660adcc45c17dafe2522166621e8 to your computer and use it in GitHub Desktop.
# Technique 1:
array_walk_recursive($YOUR_ARRAY, function (&$item, $key) {
$item = null === $item ? '' : $item;
});
# Technique 2:
array_walk($YOUR_ARRAY, function(&$item) {
$item = strval($item);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment