Archive for July 3rd, 2007
PHP Developer - July 3rd, 2007
In a note from the PHP in Action blog, they point out the release of their ebook in PDF format:
Manning Publications has released the book PHP In Action as ebook in PDF format. I wrote it with help from my co-authors Marcus Baker and Chris Shiflett. The print version is due out June 30.
You can order both the ebook only or a combo of the ebook plus the print version directly from Manning.
Continue Reading ·
PHP Developer - July 3rd, 2007
On PHP-Coding-Practices.com, Tim Koschuetzki has posted a new tutorial that just might save your life - well, at least the life of your CakePHP application - using table migrations.
Migrations are a wonderful technique to keep your database in sync with your code. When working on a project as a team, migrations can save your life. Please join me and get a quick introduction to migrations in CakePHP and become a happier coder.
He starts by explaining what migrations are (yml files that contain database construction/destruction information), how to execute them in your application, and how to construct your own.
Continue Reading ·
PHP Developer - July 3rd, 2007
Continuing on with their look at using Tidy in PHP5 applications, DevShed has posted this second part of the series, a look a parsing document nodes with the help of the Tidy library.
In this second article of the series I’m going to discuss how to extract different sections of a specific (X)HTML document (called file nodes) by using the capabilities provided by some additional functions included with this library.
They start by pulling the document into a Tidy instance and formating it a bit before moving on. Following this, they work with a few of the methods Tidy has to offer to pull information from the parsed document - tidy_get_html, tidy_get_head, tidy_get_body and tidy_get_output.
Continue Reading ·
PHP Developer - July 3rd, 2007
On the JSLabs blog today, there’s a (short) new tutorial showing an alternate method to creating a Zip archive in PHP (rather than with the zip extension).
He illustrates the creation of simple archive that pulls in a test file from a given path. This is then pushed into the zip archive and packed down and exported. He also notes the different compression levels that it can be created with - no compression, bzipped and gzipped.
You can download the library here.
Continue Reading ·
PHP Developer - July 3rd, 2007
php|architect has posted the official schedule for their upcoming php|works conference happening September 13th and 14th in Atlanta.
Included in this year’s lineup are talks like:
There’s lots more where these came from - it’s a jam-packed two day conference with great topics to appeal to everyone. Check out the main conference site for more information on how to attend or just head over to the registration page and get your spot reserved today.
Continue Reading ·