Is there any php.ini or apache parameter that can limit the usage of fopen ?

For example I cannot use fopen to grab a whole internet page , while I can use fopen to grab only the firstest few lines of an internet page .

(And yes I know that with fopen I can set a size.)

    You can't 'grab' anything with fopen(), you can get a handle on a resource. How can you set a size with fopen() ?

      Write a Reply...