1

通过 PHP shell_exec 函数,我使用此代码将“référencement”字作为参数传递

shell_exec('casperjs test.js --word='.escapeshellarg('référencement'));   

但是在 casperjs 中,当我记录它时,我得到了一些奇怪的字符。在 php 中一切正常。如何在 casperjs 中设置字符集 utf8?或者你如何看待解决方案?

4

1 回答 1

1

这是我想出的工作代码。

shell_exec('LANG=en_US.utf-8; casperjs test.js --word='.escapeshellarg('référencement'));   
于 2012-10-18T16:23:27.103 回答