about me about me
photography photography
software projects software projects
contact me contact me

I was surprised to find PDO sqlite support wasn’t included by default with PHP 5 on my Ubuntu (10.04) virtual machine. You can check which drivers are available with this small snippet of code (assuming you run this from the command line):

foreach (PDO::getAvailableDrivers() as $driver) {
    echo $driver . PHP_EOL;
}

Read the rest of this entry »

04
Mar

PHP UK Conference 2011

posted 2011 // conference, php // 0

I recently attended PHP UK 2011, this was the second PHP UK conference I’ve attended.

PHP UK Conference main auditoriumKey point from last year: this year was much better organised! Everything ran on time, last year we started late and talks over ran. Congrats to the PHP UK team for much improved organisation.

Several talks have been posted on vimeo.

The talks I attended this year:

Read the rest of this entry »

It’s hard to drag a community the size of PHP’s towards such things as standards and using frameworks. From my experience many PHP developers still struggle/refuse to adopt others standards.

When I started PHP, PEAR didn’t exist, and even when it did (and probably even today) much of community is used to “rolling their own” solutions for 99% of tasks. Most developers I’ve worked with don’t trust/use PEAR classes and I can’t really blame them. Most early efforts were authored by developers who at the time didn’t really grasp the OO concept and made god classes. Read the rest of this entry »

11
Jul

PHP exe compiler & GUI apps

posted 2006 // php // 0

I just read about Bambalam PHP EXE Compiler/Embedder on phpdeveloper – very cool. Then I spotted WinBinder, genius! (I wonder how well PHP performs for desktop GUI apps).

18
Jun

Zend PHP 5 Certification

posted 2006 // php // 0

I bit the bullet last week and ordered a Zend Certification Voucher. This afternoon I went to book an exam; during Pearson Vue’s registration process Zend require you to enter a Zend network username (I forgot I had one). While scouring the site for my username I stumbled across this thread on their forums.

With the new PHP 5 certification going live in just 5½ weeks (26th July) I figure I’ll hold off booking my exam until this materialises. Now to Ebay my Zend Certification Study Guide!

When Zend released their certification in 2004 I promptly picked up their study guide in October 2004 (along with MySQL’s study guide). However, even now I’m still not certified, I’ve studied the material but never booked the exam. When I stumbled across this thread it reminded why I never booked the exam. Read the rest of this entry »