View Single Post
Old 12-02-2003, 10:52 AM   #6 (permalink)
joe_bruin
LOAD "*",8,1
 
Join Date: Feb 2003
Location: la.ca.us
Posts: 254
joe_bruin is on a distinguished road
hrm, works for me.

Code:
[joe@portia test]$ php -q
<?
$f = fopen("blah.txt", "w");
$s = "this is a \"quoted\" string\n";
fwrite($f, $s);
fclose($f);
?>
[joe@portia test]$ 
[joe@portia test]$ cat blah.txt 
this is a "quoted" string
[joe@portia test]$
can you provide a real code example that doesn't work?
joe_bruin is offline   Reply With Quote