can someone provide a brief explanation of what this line does:
include 'zend.view://' . func_get_arg(0);
What’s with the “zend.view://” syntax? I’ve never seen a file included like this before. Appreciate your help, cheers!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s a custom stream implementation, probably a wrapper.
Take a look around for calls to the
stream_family of functions, and you’ll find where it’s declared and exactly what it’s doing to the underlying file.