如何保存CSV而不下载

时间:2011-09-08 21:09:48

标签: php mysql csv wget

我有这个PHP脚本

$connection = mysql_connect(DB_HOST,DB_USER,DB_PASS);
mysql_select_db(DATABASE, $connection);
$query = sprintf( 'SELECT * FROM something' );
$result = mysql_query($query);
header( 'Content-Type: text/csv' );
header( 'Content-Disposition: attachment;filename=export.csv' );
$row = mysql_fetch_assoc( $result );
if ( $row )
{
  echocsv( array_keys( $row ) );
}
while ( $row )
{
  echocsv( $row );
  $row = mysql_fetch_assoc( $result );
}
function echocsv( $fields )
{
  $separator = '';
  foreach ( $fields as $field )
  {
    if ( preg_match( '/\\r|\\n|,|"/', $field ) )
    {
      $field = '"' . str_replace( '"', '""', $field ) . '"';
    }
    echo $separator . $field;
    $separator = ',';
  }
  echo "\r\n";
}

它抓取所有记录并将它们保存到csv ....这很有效。但我需要做的是从cron运行这个PHP脚本并保存csv一个特定的文件夹...任何想法

这是我如何通过cron任务调用文件

wget -O /dev/null http://somesite.com/make_csv.php

1 个答案:

答案 0 :(得分:1)

看看fopen和fwrite函数,应该做的工作。