gpt4 book ai didi

php - 将 exec 输出保存到文件中

转载 作者:可可西里 更新时间:2023-10-31 22:11:45 26 4
gpt4 key购买 nike

我正在通过 php exec 运行一个 shell 命令(它是一个网络 scraper )(虽然,我也尝试过系统和 passthru),我需要将结果保存在一个文件中,(最好是.txt),输出数据是一些HTML。它创建了文件,但它始终是空的。

请帮帮我。

下面是代码,我正在尝试运行

file_put_contents('data.php',passthru('casperjs the_file_in_which_i_run.js',$output));

也试过

file_put_contents('data.php',exec('casperjs the_file_in_which_i_run.js',$output));

file_put_contents('data.php',system('casperjs the_file_in_which_i_run.js',$output));

最佳答案

exec(...., $output);
file_put_contents('file.txt', $output);

关于php - 将 exec 输出保存到文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21809109/

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