Troubleshooting PHP Receive Shell returned results _php tutorial on Chinese garbled problem

Source: Internet
Author: User
If you need PHP to execute some shell commands to view the results, 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 this function needs to be translated:
Copy CodeThe code is as follows:
This function receives the path, so the file name extension is determined
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 name 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);
}

http://www.bkjia.com/PHPjc/726025.html www.bkjia.com true http://www.bkjia.com/PHPjc/726025.html techarticle If you need PHP to execute some shell commands to view the results, if the shell output is Chinese, then PHP will get a Chinese return result similar to "? \230?\180?\187?\229?\138?\16 ...

  • Related Article

    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.