Skip to content

Instantly share code, notes, and snippets.

View ocombe's full-sized avatar

Olivier Combe ocombe

View GitHub Profile
@ocombe
ocombe / gist:5771995
Last active December 18, 2015 10:59
Detect text encoding in php
public function findEncoding($str) {
$tab = array("UTF-8", "ASCII", "ISO-8859-1");
foreach ($tab as $i) {
foreach ($tab as $j) {
$chain .= " [iconv('$i','$j','$str'): " . iconv($i, $j, "$str") . "] ";
}
}
return $chain;
}