Re: [PHP] Standard output (printf) question...

2001-12-21 Thread Paul H. Breslin
ring > functions? They seem to implement what you're trying to do... > > http://www.php.net/manual/en/ref.outcontrol.php > > HTH, > > Richy > > -Original Message- > From: Paul H. Breslin [SMTP:[EMAIL PROTECTED]] > Sent: 21 December 2001 07:40 > To:

RE: [PHP] Standard output (printf) question...

2001-12-21 Thread Richard Black
re trying to do... http://www.php.net/manual/en/ref.outcontrol.php HTH, Richy -Original Message- From: Paul H. Breslin [SMTP:[EMAIL PROTECTED]] Sent: 21 December 2001 07:40 To: [EMAIL PROTECTED] Subject: [PHP] Standard output (printf) question... I'm trying to create

[PHP] Standard output (printf) question...

2001-12-21 Thread Paul H. Breslin
I'm trying to create a function that will generate output that could go to either a file or to the current browser directly. To do this I have something like: function GenerateOutput($out) { fwrite($out, "Some stuff"); fflush($out); } and to call it I tried: $stdout = fo

Re: [PHP] Standard-Output

2001-02-18 Thread Ben Peter
Martin, you can either use the file 'php://stdout', which will open stadard output independant of platform, or access /dev/stdout, which is a symlink to the stdout stream of your process. Also, any output that is printed from PHP will be printed to stdout. Cheers, Ben Martin Thoma wrote: > >

[PHP] Standard-Output

2001-02-18 Thread Martin Thoma
Hello ! Which is the name for the standard-output on Linux ? The background: I want to use PGP (2.6.3.) to put the encrypted file out on standard-output. Regards Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma