I’m trying to open a file using fopen, and I am getting the error:
Warning: fopen(/var/www/views/images/favicon.gif): failed to open stream:
Numerical result out of range
The file exists at the provided path. I couldn’t find any documentation on the error to fix it. Any thoughts?
Turns out I was trying to use
When all I had to do was change it to:
And that fixed it.