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 中使用 exec 命令,如下所示:
exec("msgfmt /locale/2019_11_26_17.po -o /locale/file.mo")
它不允许我这样做。但是,如果我使用终端运行此命令,它就可以工作。
请帮我弄清楚出了什么问题?
谢谢你,特鲁蒂
试试看:
exec("msgfmt /locale/2019_11_26_17.po -o /locale/file.mo");
" <- 对功能很重要。