ZendCon08 Slides - September 16th

September 22nd, 2008

OK so I was bored and decided to go out and look for some of the slides for the sessions that I attended at this years ZendCon.  I found’em and many more so I decided to make a repository of all ZendCon08 slides for each session.
If your session is listed but has no link to [...]


Zend Certified Engineer

September 21st, 2008

Last week at ZendCon08 I took my ZCE test for PHP5 and passed.  I am now a ZCE!

addthis_url = ‘http%3A%2F%2Fwww.kapustabrothers.com%2F2008%2F09%2F21%2Fzend-certified-engineer%2F’;
addthis_title = ‘Zend+Certified+Engineer’;
addthis_pub = ‘farrelley’;


ZendCon 2008

August 1st, 2008

I have signed up and all my travel plans are set to go to ZendCon08.  This will be my first PHP conference and my first visit out to California.  I’m pretty excited to meet and network with the PHP community and look forward to learning many new things.  See you all on September 14th!

[...]


PHP == or ===

July 29th, 2008

Many PHP developers get confused when using the comparison operators.  Mainly weather to us two equal signs or three.  It really is a simple concept when you understand what it does.  The double equal sign (==) compares two data types which don’t have to be in the same type.  So for example you can compare
$a [...]


Backtick Operator

July 11th, 2008

I just learned something new today in PHP.  It’s the Backtick Operator.  What it does is executes a shell command and captures its output.  You can then store that in a variable for use.  I am pretty sure this is a UNIX command only.  Not sure if this will work in windows or not.  Here [...]