gpt4 book ai didi

php - 在 PHP 中执行 Linux 命令

转载 作者:太空宇宙 更新时间:2023-11-04 05:18:50 24 4
gpt4 key购买 nike

如何在php中执行linux命令?

编辑:该命令不输出结果,该命令将抓取的数据保存到json文件中并使用php、html显示

<?php
if (isset($_POST['button']))
{
exec('(cd /var/www/html && scrapy crawl quotes -o - > /var/www/html/items.json -t json)');
}
?>

最佳答案

<?php system("cd /var/www/html && scrapy crawl quotes -o - > /var/www/html/items.json -t json", $retval); echo $retval; ?>

或者您可以将命令放在反引号中

<?php
$output = `cd /var/www/html && scrapy crawl quotes -o - > /var/www/html/items.json -t json`;
echo "<pre>$output</pre>";
?>

关于php - 在 PHP 中执行 Linux 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44948713/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com