[tags]best practices, php[/tags]
If you’re familiar with PHP, the difference between double and single quotes is obvious. Double quotes evaluate variables and control characters (e.g. \n or \r), whereas single quotes do not.
I’ve been indoctrinated with the “use single quotes whenever possible” methodology, but I never really put it to the test. Is it [...]
Filed under programming. |
Tags: best-practices && php
[tags]best practices,php,openID[/tags]
I’m working on implementing openID for reviewsby.us and for use in symfony apps. One thing I was having trouble with was parsing key value pairs, which is one of the requirements to reading responses. It’s a fairly easy task, but PHP offers so many ways to do this.
openID calls for the following [...]
Filed under programming, reviewsby.us and symfony. |
Tags: best-practices && openid && php