Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Paul Jones' Blog:
When Possible, Use File *Resources* Instead Of File *Names*
Jul 04, 2012 @ 19:10:49

In this new post to his blog Paul Jones makes a suggestion when you're working with files or external connections in your PHP applications - pass the resource, not the file/path name for more flexibility.

In testing the Aura.Http package, I have realized that it’s much more flexible, testing wise, to pass around file resources (a.k.a. handles, pointers, or streams) than it is to pass around file names. When you do that, you can use a php://memory stream instead of attempting to touch the file system.

He shows how using this method can make it easier to test with a simple bit of refactoring by passing in the "php://memory" stream rather than the actual file reference. The comment (from Chris Hartjes) also suggests an alternative tool for working with tests that need the file system, vfsStream.

tagged: file resource filename opinion unittest phpmemory stream

Link:


Trending Topics: