Skip to content

Instantly share code, notes, and snippets.

@nachodd
Created September 16, 2016 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nachodd/2446747d758e3c7725db0e07752c4c9b to your computer and use it in GitHub Desktop.
Save nachodd/2446747d758e3c7725db0e07752c4c9b to your computer and use it in GitHub Desktop.
<?php
function utf8_converter($array) {
array_walk_recursive($array, function(&$item, $key){
if(!mb_detect_encoding($item, 'utf-8', true)){
$item = utf8_encode($item);
}
});
return $array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment