I can understand that by minifing js code will reduce its size and will be helpful for sending over the network but will it be useful to minify php?
also how obfuscation will be helpful in execution in php?
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.
Minifying php is pointless from a network bandwidth perspective, minifying the output of the php might be beneficial however as the html that is output is transmitted. The original php will be hard to maintain if it’s minified. Which is also the point of obsfucation. If someone gets hold of your php, then it will prevent them knowing what it does without more effort…