PHP tips and tricks to improve website speed

PHP tips and tricks to improve website speed Echo is faster than print Wrap your string in single quotes (’) instead of double quotes (”) is faster because PHP searches for variables inside “…” and not in ‘…’, use this when you’re not using variables you need evaluating in your string Use sprintf instead of …

PHP tips and tricks to improve website speed Read More »