简体   繁体   中英

Uploading a PHP generated CSV file to SFTP server via terminal

I have a PHP file which generates a CSV file using the code below:

$filename = $file."_".date("Y-m-d_H-i",time());
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header("Content-disposition: filename=".$filename.".csv");
print $csv_output;

I've not included the code which creates the content as it does it's job fine. What I need to do is use terminal to run this file and upload the results to an sftp server. I can connect to the server fine in terminal.

I have been using the php command in terminal to produce the resulting CSV. This however doesn't produce the CSV like it does when run in the browser. What it does do is produce the CSV as a string.

Is there a way to either produce the CSV as a file like the browser so I can grab it in terminal and upload it to the SFTP server? Alternatively is it possible to echo out the string produced from the PHP file and create the CSV myself using this kind of command:

echo "boo,to,you">file.csv

Just redirect the php output to a temporary file and upload the file.

php yourscript.php > /tmp/file.csv
echo "put /tmp/file.csv" | sftp user@example.com

If you want to do it without the temporary file, you cannot do with just the (OpenSSH) sftp as it cannot read contents to upload from the stdin. Neither the (OpenSSH) scp can.


You can of course produce the file from PHP code itself, if that suits your task better.

Just use the file_put_contents() :

file_put_contents("/tmp/file.csv", $csv_output);

See How to write into a file in PHP?


The suggestion by @MarcB should work, if the remote server is *nix (understands the cat ) and allows a shell access.

php yourscript.php | ssh user@example.com 'cat > file.csv'

Though obviously that's not "SFTP upload" anymore.


When producing a file, do not use the the header() . Headers make sense in webserver environment only, not when you use the PHP as a scripting language in a shell.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM