首页  >  文章  >  后端开发  >  PHP如何对中文进行转义?

PHP如何对中文进行转义?

Guanhui
Guanhui原创
2020-07-23 09:11:413009浏览

PHP如何对中文进行转义?

PHP如何对中文进行转义?

在PHP中可以通过使用“urlencode()”函数将中文进行转义,该函数的作用是对URL字符串进行编码,其语法为“urlencode($str )”,使用时将中文传入即可。

使用示例

<?php
echo &#39;<a href="mycgi?foo=&#39;, urlencode($userinput), &#39;">&#39;;
?>
<?php
function fullescape($in)
{
  $out = &#39;&#39;;
  for ($i=0;$i<strlen($in);$i++)
  {
    $hex = dechex(ord($in[$i]));
    if ($hex==&#39;&#39;)
       $out = $out.urlencode($in[$i]);
    else
       $out = $out .&#39;%&#39;.((strlen($hex)==1) ? (&#39;0&#39;.strtoupper($hex)):(strtoupper($hex)));
  }
  $out = str_replace(&#39;+&#39;,&#39;%20&#39;,$out);
  $out = str_replace(&#39;_&#39;,&#39;%5F&#39;,$out);
  $out = str_replace(&#39;.&#39;,&#39;%2E&#39;,$out);
  $out = str_replace(&#39;-&#39;,&#39;%2D&#39;,$out);
  return $out;
}
?>
<?php
   function flash_encode ($input)
   {
      return rawurlencode(utf8_encode($input));
   }
?>

... could do the problem. Unfortunately flash still have problems with read some quotations, but with this one:

<?php
   function flash_encode($string)
   {
      $string = rawurlencode(utf8_encode($string));

      $string = str_replace("%C2%96", "-", $string);
      $string = str_replace("%C2%91", "%27", $string);
      $string = str_replace("%C2%92", "%27", $string);
      $string = str_replace("%C2%82", "%27", $string);
      $string = str_replace("%C2%93", "%22", $string);
      $string = str_replace("%C2%94", "%22", $string);
      $string = str_replace("%C2%84", "%22", $string);
      $string = str_replace("%C2%8B", "%C2%AB", $string);
      $string = str_replace("%C2%9B", "%C2%BB", $string);

      return $string;
   }
?>

推荐教程:《PHP

以上是PHP如何对中文进行转义?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn