Solve the result of the return of PHP received shell Chinese garbled problem

Source: Internet
Author: User
Tags foreach explode

Shell output of Chinese, then the Chinese returned PHP results for garbled, there is a good solution, we can refer to the following

If you need PHP to execute some shell commands to see the results of the display, if the shell output has Chinese, then PHP will get a Chinese return result similar to the "? 230?180?187?229?138?168" string.  Then you need this function to translate: The code reads://This function receives all paths, so it is judged that the file extension function Shell2txt ($a) {$ary = explode ('/', $a);    foreach ($ary as $k => $v) {if (Strpos ($v, '? ')!== false) {$_ary = explode ('? ', $v);  foreach ($_ary as $_k=>$_v) {if ($_v = = ") continue;  Determine if there is a file extension $end = ';  if (Strpos ($_v, '. ')!== false) {$end = substr ($_v, Strpos ($_v, '. '));  } $_ary[$_k] = Dechex ($_v). $end;  $ary [$k] = implode ('% ', $_ary);  }} $a = implode ('/', $ary);  return UrlDecode ($a); }

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.