Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过 PHP shell_exec 函数,我使用此代码将“référencement”字作为参数传递
shell_exec('casperjs test.js --word='.escapeshellarg('référencement'));
但是在 casperjs 中,当我记录它时,我得到了一些奇怪的字符。在 php 中一切正常。如何在 casperjs 中设置字符集 utf8?或者你如何看待解决方案?
这是我想出的工作代码。
shell_exec('LANG=en_US.utf-8; casperjs test.js --word='.escapeshellarg('référencement'));