纯PHP实现中的Shell命令

时间:2013-02-11 10:29:04

标签: php shell-exec

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

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

此致

2 个答案:

答案 0 :(得分:-1)

您可以查看file functions of PHP

你可以列出文件,制作目录,删除它们......当然,你找不到所有你能找到的shell。

答案 1 :(得分:-2)

使用

shell_exec("your command here");

echo exec("your command here");

另请查看这些网站:

  

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

     

How To Execute SSH Commands Via PHP

     

php shell_exec() vs exec()