Detectar Texto UTF8 en PHP

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Detectar Texto UTF8 en PHP相关的知识,希望对你有一定的参考价值。

Esta función devuelve true si el argumento está codificado en utf8
  1. function isUTF8($string){
  2. for($idx = 0, $strlen = strlen($string); $idx < $strlen; $idx++){
  3. $byte = ord($string[$idx]);
  4. if($byte & 0x80){
  5. if(($byte & 0xE0) == 0xC0){
  6. // 2 byte char
  7. $bytes_remaining = 1;
  8. }elseif(($byte & 0xF0) == 0xE0){
  9. // 3 byte char
  10. $bytes_remaining = 2;
  11. }elseif(($byte & 0xF8) == 0xF0){
  12. // 4 byte char
  13. $bytes_remaining = 3;
  14. }else{
  15. return false;
  16. }
  17.  
  18. if($idx + $bytes_remaining >= $strlen){
  19. return false;
  20. }
  21.  
  22. while($bytes_remaining--){
  23. if((ord($string[++$idx]) & 0xC0) != 0x80){
  24. return false;
  25. }
  26. }
  27. }
  28. }
  29. return true;
  30. }

以上是关于Detectar Texto UTF8 en PHP的主要内容,如果未能解决你的问题,请参考以下文章

javascript Detectar单击en iframe

css detectar si hay 3 divs en css

JavaScript solo numeros en campo de texto javascript

markdown Decidir en base a lo introductioncido en una pregunta de texto abierto

markdown Decidir en base a lo introductioncido en una pregunta de texto abierto

markdown Remplaza la variable en el texto de la pregunta