111zhengsenlin.blog.chinaunix.net
zhengsenlin888
全部博文(362)
2014年(1)
2013年(58)
2011年(115)
2010年(112)
2009年(76)
1抹温暖
shuining
expert1
曾德标
daivehhm
danielah
大鬼不动
prolj
gaokeke1
飘絮絮絮
wb123456
ZShen
hxl
老男孩Li
tomorrow
mcc543
fwx56181
分类: 系统运维
2011-08-15 19:22:52
1、exec函数
$test = "ls /tmp/test"; //ls是linux下的查目录,文件的linux命令
exec($test,$array); //执行命令
print_r($array);
?>
2、system函数调用linux系统命令
$test = "ls /tmp/test";
$last = system($test);
print "last: $last\n";
上一篇:php连接mysql
下一篇:Remove entry from know_hosts of ssh
登录 注册