vote up 0 vote down star

For example, I have a variable "$foo" that includes all the data which I want to show in the CSV:

$foo = "some value,another value,last value";

My goal is to:

  1. Create a CSV file named "some.csv" whose contents are equal to $foo

  2. Upload "some.csv" to my server.

How can this be done?

Update: Here's the exact code that worked for me.

$foo = "some value,another value,last value";
$file = 'some_data.csv';
file_put_contents($file, $foo);
flag

so youre running php at your home and you want to upload it to your server? – Galen Nov 5 at 15:55
No, I'm uploading my php script to a server, which will be run by a chron job. The script should create a csv file and add it to a directory on the same hosting space/server. – ed.talmadge Nov 6 at 12:31

4 Answers

vote up 2 vote down check

Number 1:

file_put_contents("foobar.csv", $yourString);

Number 2:

$c = curl_init("http://"...);  
curl_setopt($c, CURLOPT_POSTFIELDS, array('somefile' => "@foobar.csv"));
$result = curl_exec($c);
curl_close($c);
print_r($result);

note the @ before the filename

link|flag
Don't forget to check to make sure the cURL extension is installed. – Mike B Nov 5 at 16:24
vote up 2 vote down

See fputcsv()

If $foo is already csv-formatted. You can use file_put_contents()

You don't specify the upload method. Here is an example using ftp (UNSECURE):

$foo = '...csv data...';
$username = "myUser";
$password = "myPassword";
$url = "myserver.com/file.csv";
$hostname= "ftp://$username:$password@$url";
file_put_contents($hostname, $foo);
link|flag
vote up 1 vote down

If you already have the variable with all the data you can use file_put_contents to save it as a csv

link|flag
vote up 0 vote down

To create the CSV you would need to break your string into an array, then loop through it. After that you can save the file to any directory the web server account has access to on your server. Here is an example ...

//variables for the CSV file $directory='\sampledir\; $file='samplefile.csv'; $filepath = $directory.$file;

//open the file $fp = fopen("$filepath",'w+');

//create the array $foo = "some value,another value,last value"; $arrFoo = explode(',',$foo);

//loop through the array and write to the file $buffer = ''; foreach($arrFoo AS $value) { $buffer .= $value."\r\n"; } fwrite($fp,$buffer);

//close the file fclose($fp);

Your file will now be written to the directory set in $directory with the filename set in $file.

-Justin

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.