PHP supprimez l'espace de non-rupture UTF

Non-breaking spaces can be troublesome with trim:

// nbsp are translated to 0xA0, so use:
// UTF encodes it as chr(0xC2).chr(0xA0)
$converted = trim($converted,chr(0xC2).chr(0xA0)); // should work
Old Knight