Daniel Ribeiro
Daniel Ribeiro

Reputation: 10234

Get a stream resource from a SplFileInfo object

I'm calling a method that expects a stream resource for a file, like this:

$obj->method(fopen($splFileInfo, 'r+'));

The $splFileInfo object is an instance of SplFileInfo.

Is there a way to get the stream resource of the $splFileInfo object without having to call fopen?

Upvotes: 8

Views: 4424

Answers (0)

Related Questions