是否有任何类型的 PHP 纯 shell 命令实现?我的意思是某种执行“shell”命令的接口,而不是使用 exec/shell_exec/system 来执行它们的本机 php 实现。
例如:“ls -l”根据opendir/scandir/readdir/closedir函数执行php实现。“mkdir example”执行类似:mkdir('example') 等。
问候
是否有任何类型的 PHP 纯 shell 命令实现?我的意思是某种执行“shell”命令的接口,而不是使用 exec/shell_exec/system 来执行它们的本机 php 实现。
例如:“ls -l”根据opendir/scandir/readdir/closedir函数执行php实现。“mkdir example”执行类似:mkdir('example') 等。
问候
你可以看看PHP 的文件函数。
您可以列出文件、创建目录、删除它们……但当然,您不会找到所有可以找到的 shell。
要么使用
shell_exec("your command here");
或者
echo exec("your command here");
也看看这些网站: