php exec()在unicode模式下?

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php exec()在unicode模式下?脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要执行命令行命令和工具,接受ut8作为输入或生成ut8输出.
所以我使用cmd它的工作原理,但是当我从PHP用exec尝试这个时它不起作用.
为了简单起见我尝试了简单的输出重定向.

当我在命令提示符下直接写:

创建了uft8.txt,内容是正确的.

当我使用PHP的exec函数时:

$cmd = "chcp 65001 > nul && echo цчшщюя-öüäß>utf8.txt";
exec($cmd,$output,$return);
var_dump($cmd,$return);

utf8.txt中的内容搞砸了:

我正在使用Win7,64bIT和(控制台)代码页850.

我该怎么做才能解决这个问题?

其他信息:
我试图克服在Windows上读取和写入utf8文件名的一些问题.
PHP文件函数失败:glob,scandir,file_exists无法正确处理utf8文件名.文件不可见,跳过,名称被更改…
因此,我想避免PHP文件功能,我正在寻找一些PHP extern文件处理.

由于我找不到一个简单,快速和可靠的内部PHP解决方案,我结束使用我知道它的工作. CMD-批处理文件.
我创建了一个在运行时生成cmd批处理文件的小函数.
它只是预先设置chcp(更改代码页)命令以切换到unicode.
并解析输出.
function uft8_exec($cmd,&$output=null,&$return=null)
{
    //get current work directory
    $cd = getcwd();

    // on multilines commands the line should be ended with "\r\n"
    // otherwise if unicode text is there,parsing errors may occur
    $cmd = "@echo off
    @chcp 65001 > nul
    @cd \"$cd\"
    ".$cmd;


    //create a temporary cmd-batch-file
    //need to be extended with unique generic tempnames
    $tempfile = 'PHP_exec.bat';
    file_put_contents($tempfile,$cmd);

    //execute the batch
    exec("start /b ".$tempfile,$return);

    // get rid of the last two lin of the output: an empty and a prompt
    array_pop($output);
    array_pop($output);

    //if only one line output,return only the extracted value
    if(count($output) == 1)
    {
        $output = $output[0];
    }

    //delete the batch-tempfile
    unlink($tempfile);

    return $output;

}

用法:就像PHP exec():

要么

脚本宝典总结

以上是脚本宝典为你收集整理的php exec()在unicode模式下?全部内容,希望文章能够帮你解决php exec()在unicode模式下?所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。