I want to create a file-static variable in PHP. How can I do this or what should I use instead?
Edit:
I’m basically wanting to create a file-scope static variable, similar to what is available in C/C++.
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.
After further investigation, it seems like the easiest solution is to just use a class which wraps the functions. The only downside is you have to use the prefix when calling:
Container::Func();This could be solved with an additional wrapper for each function, but this isn’t as clean of a solution.