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
function isUTF8($string){ if($byte & 0x80){ if(($byte & 0xE0) == 0xC0){ // 2 byte char $bytes_remaining = 1; }elseif(($byte & 0xF0) == 0xE0){ // 3 byte char $bytes_remaining = 2; }elseif(($byte & 0xF8) == 0xF0){ // 4 byte char $bytes_remaining = 3; }else{ return false; } if($idx + $bytes_remaining >= $strlen){ return false; } while($bytes_remaining--){ return false; } } } } return true; }
以上是关于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