php-general Digest 26 Feb 2013 01:40:34 -0000 Issue 8137

Topics (messages 320293 through 320294):

Re: Big File Upload how to catch stream
        320293 by: tamouse mailing lists

Arrays
        320294 by: Karl DeSaulniers

Administrivia:

To subscribe to the digest, e-mail:
        php-general-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
        php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
        php-gene...@lists.php.net


----------------------------------------------------------------------
--- Begin Message ---
On Sun, Feb 24, 2013 at 1:10 PM, Wim <wim.stock...@gmail.com> wrote:
>
> Hello,
>
> I have been looking how to upload big files more than 1GB , with php but it
> doesn't work well. I guess php POST multipart method is to memory consuming.
> Is there a way , like in the apache.commons to catch the stream and handle
> it ?
> I've looked at the rfc1867.c file implementation and it seems that this is
> where the memory goes really up. Is there a way we could change this ?
>
> Kind Regards
> Wim

Maybe look at 
http://stackoverflow.com/questions/10961538/uploading-very-large-files-5gb-to-15gb

--- End Message ---
--- Begin Message ---
Hi Guys/Gals,
If I have an multidimensional array and it has items that have the same name in it, how do I get the values of each similar item?

EG:

specialservices => array(
        specialservice => array(
                serviceid => 1,
                servicename=> signature required,
                price => $4.95
        ),
        secialservice => array(
                serviceid => 15,
                servicename => return receipt,
                price => $2.30
        )
)

How do I get the prices for each? What would be the best way to do this?
Can I utilize the serviceid to do this somehow?
It is always going to be different per specialservice.

TIA,

Best,

Karl DeSaulniers
Design Drumm
http://designdrumm.com


--- End Message ---

Reply via email to