W3pop.com
原创PHP实例
返回
说明 + 代码
在执行操作符(`)中的命令会在服务器端上执行,比如读取某盘的目录命令:
<?php
//这个举例是在windows环境下的
$output
=`
dir e:
`;
echo
$output
;
?>
输出结果