up vote 2 down vote favorite
share [g+] share [fb]

In the PHP manual, the file operations reference an optional context (e.g. for copy). How do these contexts affect basic file operations?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

As it turns out, stream contexts can contain both options and parameters. At the current time, parameters are simply callback functions so that you can be notified at various points of the file operation. Options are wrapper-specific, and filesystem operations don't have any options. Some examples of options for the HTTP wrapper are method, proxy, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.