What are some of the most expensive operations in PHP? I know things like overusing the @ operator can be expensive. What else would you consider?
Share
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.
Some micro-optimizations that are good practice, but won’t make much difference to your bottom line performance:
echo 'How are you ',$name,' I am fine ',$var1is faster thanecho 'How are you '.$name.' I am fine '.$var1