After receiving an update today to push my Chrome version to 5.0.322.2 dev, I noticed that I could no longer log in to the web site that I had open when the update was done. I happened to be developing a website when I received notification for the update so, like always, I just continued… Read more »
Posts Tagged: php
Speed Comparison of strlen() VS empty() in PHP Shows empty() is Faster
While working on a PHP project, I found myself occasionally switching between using empty() or !strlen() when I was dealing with strings. In PHP, there are often multiple solutions for the same problem and this was one of those cases. I didn’t really have a reason to use one over the other and, as most… Read more »
Improved AJAX, XHTML, and RSS Safe Function for Converting Entities to ASCII in PHP
In March, I reported on a particular problem that may or may not have arisen for developers. In short: WebKit and, consequently, Google Chrome might have introduced some problems for developers who weren’t properly converting their variables to ensure they were safe for XHTML, RSS and AJAX by converting their characters to the proper ASCII… Read more »