Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑问] 我用计划任务下载文件失败

[复制链接]
tdmd 发表于 2010-1-18 13:33:31 | 显示全部楼层 |阅读模式
我写了一个php页面能下载远程js,单独运行页面很好,但是作为计划任务运行的时候提示任务完成,但是js并没有被下载下来,有谁知道是什么原因么?下面是页面代码:
  1. <?php
  2. $ch = curl_init('http://php.weather.sina.com.cn/js.php?city=荆州&day=0') ;
  3. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ;
  4. curl_setopt($ch, CURLOPT_BINARYTRANSFER, true) ;
  5. $output = curl_exec($ch) ;
  6. $destination_folder = 'js/';
  7. $newfname = $destination_folder . 'weather.js';
  8. $newf = fopen($newfname, 'w');
  9. if ($newf){
  10. fwrite($newf, $output) ;
  11. }
  12. if ($newf) {
  13. fclose($newf);
  14. }
  15. ?>
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-18 18:28 , Processed in 0.020507 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表