Re: [PHP] Re: how do I use php://memory?

2010-01-30 Thread Daniel Brown
On Sat, Jan 30, 2010 at 12:18, Shawn McKenzie wrote: > > Done.  Thanks Dan.  http://bugs.php.net/bug.php?id=50886 Thank you, sir. I thanked you on Facebook when I saw the report come in, but wanted to thank you properly here as well. -- daniel.br...@parasane.net || danbr...@php.net http:/

Re: [PHP] Re: how do I use php://memory?

2010-01-30 Thread Shawn McKenzie
Daniel P. Brown wrote: > (Typing from the DROID, so forgive the top-posting.) > > Shawn, would you take a few moments to submit this as a bug at > http://bugs.php.net/? I know you well enough that, if you say the docs suck, > they probably do. > > On Jan 29, 2010 10:47 PM, "Shawn McKenzie" wrote

Re: [PHP] Re: how do I use php://memory?

2010-01-29 Thread Daniel P. Brown
(Typing from the DROID, so forgive the top-posting.) Shawn, would you take a few moments to submit this as a bug at http://bugs.php.net/? I know you well enough that, if you say the docs suck, they probably do. On Jan 29, 2010 10:47 PM, "Shawn McKenzie" wrote: Eric Lee wrote: > On Sat, Jan 30,

Re: [PHP] Re: how do I use php://memory?

2010-01-29 Thread Shawn McKenzie
Eric Lee wrote: > On Sat, Jan 30, 2010 at 9:00 AM, Shawn McKenzie wrote: > >> Mari Masuda wrote: >> >>> Has anyone ever successfully used php://memory before? If so, what >>> can I do to use it in my code? Thank you. >> No, but I was intrigued to try it, so I tested this: >> >> $text = 'Some tex

Re: [PHP] Re: how do I use php://memory?

2010-01-29 Thread Eric Lee
On Sat, Jan 30, 2010 at 9:00 AM, Shawn McKenzie wrote: > Mari Masuda wrote: > > > Has anyone ever successfully used php://memory before? If so, what > > can I do to use it in my code? Thank you. > > No, but I was intrigued to try it, so I tested this: > > $text = 'Some text.'; > file_put_content

[PHP] Re: how do I use php://memory?

2010-01-29 Thread Shawn McKenzie
Mari Masuda wrote: > Has anyone ever successfully used php://memory before? If so, what > can I do to use it in my code? Thank you. No, but I was intrigued to try it, so I tested this: $text = 'Some text.'; file_put_contents('php://memory', $text); echo file_get_contents('php://memory'); And