0

是否有任何类型的 PHP 纯 shell 命令实现?我的意思是某种执行“shell”命令的接口,而不是使用 exec/shell_exec/system 来执行它们的本机 php 实现。

例如:“ls -l”根据opendir/scandir/readdir/closedir函数执行php实现。“mkdir example”执行类似:mkdir('example') 等。

问候

4

2 回答 2

-1

你可以看看PHP 的文件函数

您可以列出文件、创建目录、删除它们……但当然,您不会找到所有可以找到的 shell。

于 2013-02-11T10:33:25.697 回答
-2

要么使用

shell_exec("your command here");

或者

echo exec("your command here");

也看看这些网站:

http://php.net/manual/en/function.exec.php

如何通过 PHP 执行 SSH 命令

php shell_exec() 与 exec()

于 2013-02-11T10:42:47.420 回答