php 實現emoji遇到的棘手問題,很棘手!

來源:互聯網
上載者:User
function str_emoji($dir,$str){  if($dir){    $str=json_encode($str);    $str=preg_replace('#(\\\ud[0-9a-f]{3}|\\\u2(6|7)[0-9a-f]{2})#ie','addslashes("\\1")',$str);    //emoji 5.0後,一個表情由兩個字元組成    $str=json_decode($str);  }else{    $str=preg_replace('#(u[0-9a-f]{4}u[0-9a-f]{4})#ie','iconv("UCS-2","UTF-8",pack("H4","\\1"))',$str);    //此正則匹配ue415ue415形式的資料    //不能將二進位轉成\xf0\x9f\x98\x83形式的UTF-8  }  return $str;};
//寫進資料庫$content=str_emoji(true,$content);
//讀取資料庫$content=str_emoji(false,$content);

下面問題來了。

iconv("UCS-2","UTF-8",pack("H4","\\1")) 不能將二進位專程UTF-8,怎麼破????
另:資料庫版本不能直接儲存emoji,升級資料庫是肯定不可行的方案。

參考文章:http://blog.mc-zone.me/article/322

回複內容:

function str_emoji($dir,$str){  if($dir){    $str=json_encode($str);    $str=preg_replace('#(\\\ud[0-9a-f]{3}|\\\u2(6|7)[0-9a-f]{2})#ie','addslashes("\\1")',$str);    //emoji 5.0後,一個表情由兩個字元組成    $str=json_decode($str);  }else{    $str=preg_replace('#(u[0-9a-f]{4}u[0-9a-f]{4})#ie','iconv("UCS-2","UTF-8",pack("H4","\\1"))',$str);    //此正則匹配ue415ue415形式的資料    //不能將二進位轉成\xf0\x9f\x98\x83形式的UTF-8  }  return $str;};
//寫進資料庫$content=str_emoji(true,$content);
//讀取資料庫$content=str_emoji(false,$content);

下面問題來了。

iconv("UCS-2","UTF-8",pack("H4","\\1")) 不能將二進位專程UTF-8,怎麼破????
另:資料庫版本不能直接儲存emoji,升級資料庫是肯定不可行的方案。

參考文章:http://blog.mc-zone.me/article/322

存資料庫的時候 base_encode64() 取得的時候base_decode64()

mysql編碼選擇utf8mb4即可

資料庫是mysql吧,把資料庫和欄位編碼設定為utf8mb4,可以直接儲存表情字元

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.