2013-12-18 260 views

回答

0

也許你可以看看strtr函數(閱讀更多在http://php.net/strtr)?

+0

我想將Prénom轉換爲'Pré nom'。 –

+0

那意味着你想將它轉換爲將字符串轉換爲html實體? – ChunLin

+0

這意味着我想在我的數據庫中插入'Pré nom'。 –

0

我想看看正確的方法是要麼mb_convert_encodinghtmlentities

這裏是一個示例,您可以查看here

$text = "Prénom"; 
echo mb_convert_encoding($text, 'HTML-ENTITIES', 'UTF-8'); 
echo "\n"; 
echo htmlentities($text, ENT_COMPAT | ENT_HTML401, 'UTF-8');