sniko Posted September 11, 2012 Posted September 11, 2012 Wow, what I c*nt I was... Ahaha! -tooshort- Quote
The Coder Posted September 12, 2012 Posted September 12, 2012 Ahaha! -tooshort- "Shutup fool." :P Quote
lucky3809 Posted September 12, 2012 Posted September 12, 2012 lol we all have opinions and code differently here is my opinion..., echo is faster and I will not change to print. also i mention it before with quotes why is it necessary to use a double quote when there is no $var in place in the echo statement? it is parsing the line meaning taking up time which if anyone is going off speed for their entire website they should use single quoting when there is no $var present... such as echo 'hello'; instead of echo "hello"; ... No not much a difference in speed, but if you are wanting speed the best solution is to use php correctly lol echo "hello $name."; <--that is ok to double quote ...echo "hello";<-- Is bad to double quote, because it is parsing that line and wasting that millisecond to parse that line when parsing is not needed... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.