Skip to content

Instantly share code, notes, and snippets.

@blar
Created January 14, 2016 21:01
Show Gist options
  • Save blar/24a5dd13c4341e14fa57 to your computer and use it in GitHub Desktop.
Save blar/24a5dd13c4341e14fa57 to your computer and use it in GitHub Desktop.
<?php
function string_charset_convert($input, $from, $to) {
$output = iconv($from, $to, $string);
if($output === false) {
return $input;
}
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment