News Feed
Sections
News Archive


Community Events






feed this:

Zend Developer Zone:
Book Review Object-Oriented Programming with PHP5
0 comments :: posted Tuesday June 24, 2008 @ 11:14:28
voice your opinion now!

The Zend Developer Zone has published a new book review covering the Packt Publishing book from Hasin Hayder, "Object-Oriented Programming with PHP5".

The book does a decent job of covering the main OOP topics in PHP; as well as, touching upon some of the peripheral ones. Hayder devotes whole chapters to such topics as unit testing, design patterns, XML, SPL, and working with databases.

The review talks about the "Good", the "Bad" and the "Ugly" of the book ranging from the good code examples and the chapter on the SPL down to the flawed version of the Singleton used and the lack of commentary/explanations around the code.

tagged with: php5 book review object oriented programming


Alex Netkachov's Blog:
Are setters evil?
0 comments :: posted Tuesday June 17, 2008 @ 09:36:03
voice your opinion now!

Alex Netkachov has posted his own response to this opinion on the Typical Programmer on getters and setters in object-oriented applications.

"Do not use getters and setters" looks like a hastily advise, but its meaning is very important and it is "do not break encapsulation", which moves us to the question what the encapsulation is.

He notes that encapsulation is, in essence, hiding parts of the code away so that the user/other coders only see a little bit of the magic that happens. He argues that getters and setters are a valid part of the encapsulation process and that designing a good, easy to use system almost requires them.

tagged with: setter getter object oriented programming encapsulation

PHPFreaks:
OO PHP Parts One & Two
0 comments :: posted Monday June 09, 2008 @ 08:48:00
voice your opinion now!

PHPFreaks has posted part one and part two of a new series they're working on to introduce those new to the language to the concepts of object-oriented programming in PHP.

On the old site, I started a series of tutorials named "PHP Application Design". I planned for at least three parts, and while I did publish the first two and wrote at least half of part three, I found myself out of time to make it to the finish. Still dedicated to writing reusable and extensible PHP code and spreading the knowledge, this is a restart of the series, renamed as simply "OO PHP"

In part one he looks at the basics of OOP (terms, defining properties/methods, autoload, exceptions, type hinting, etc) with some code examples sprinkled through out. Part two looks at the "boring OOP principles" like polymorphism, encapsulation and heuristics.

tagged with: objectoriented programming tutorial principles introduction

Kae Verens' Blog:
review Object-Oriented Programming in PHP5
0 comments :: posted Thursday May 29, 2008 @ 07:53:43
voice your opinion now!

Kae Verens has posted a review of a PHP-related book from APress Publishing, "Object-Oriented Programming in PHP5":

In short: a very good concise introduction to OOP. I'll be keeping this on my desk for a while. The language use is strange but the code examples and the spread of topics make up for that in spades. This book has a very broad scope, but is clear in the essentials. If you're looking for an introduction to Objected Oriented Programming in PHP, I'd recommend this one.

The review gets into a bit more detail on "The Good", "The Bad" and "The Ugly" of its contents including its intro to OOP in PHP (good), the assumption that OOP is better than other programming types (bad) and the poor structure of the book (the ugly).

tagged with: book review apress object oriented programming php5

Michael Kimsal's Blog:
New PHP book - Guide to Programming with Magento upcoming releaes
0 comments :: posted Friday May 16, 2008 @ 12:58:45
voice your opinion now!

Michael Kimsal has posted about the release of a new book from php|architect publishing, PHP Architect's Guide to Programming with Magento. Coincidently, one of the authors is also his brother Mark Kimsal.

I'm really excited for him, as I know he put a lot of work over the past several months learning Magento and writing the book. The biggest challenege was dealing with the underlying architecture changes that the Magento team applied in various versions leading up to (and including after!) the 1.0 release.

It's hard to hit a moving target like that, but as Michael mentions, the book and its authors did a great job of it.

The book as been officially released and can be purchased on the php|architect website in either a Print+PDF ($34.99 CAD) or just PDF ($29.99 CAD).

tagged with: magento phparchitect book release markkimsal programming

Stefan Mischook's Blog:
Aprenda Programacion Orientada a Objetos en PHP
0 comments :: posted Monday May 12, 2008 @ 16:34:54
voice your opinion now!

Stefan Mischook has released a Spanish version of his tutorial covering object-oriented programming in PHP.

I've released my tutorial on Object Oriented PHP in Spanish. You can download the PDF. Many thanks to Javier W. Barbieri from Iquitos Peru.

Check out the KillerPHP.com site for more great tutorials - including videos - released to learning PHP.

tagged with: tutorial objectoriented programming spanish translation

Rob Allen's Blog:
A review of "Object-Oriented Programming with PHP5"
0 comments :: posted Tuesday May 06, 2008 @ 09:36:02
voice your opinion now!

Rob Allen has posted his review of another PHP-related book from Packt Publishing, "Object-oriented Programming with PHP5":

Packt Publishing recently sent me a couple of books to review, so let's start with Object-Oriented Programming with PHP5 by Hasin Hayder. According to the introduction, the book is intended for beginners to intermediate PHP5 programmers and the first chapter has a good introduction to what object oriented programming is and why you would want to use it.

He glosses over the first few chapters of the book (introductory stuff mostly) and points out three others specifically - Chapter 5 covering reflection and unit testing, Chapter 6 covering the SPL and Chapter 9 dealing with SimpleXML and DOM.

tagged with: object oriented programming php5 review book packt

Ken Guest's Blog:
Book Review Object-Oriented Programming with PHP5
0 comments :: posted Friday May 02, 2008 @ 08:47:33
voice your opinion now!

Ken Guest has reviewed one of the PHP offerings from Packt Publishing and written by Hasin Hayder - Object-oriented Programming with PHP5.

Putting the aspects of Hayder's grasp of the English language aside, the book is rather good as an introduction to the various technologies that it covers.

He points out a few things of note - the beginner OOP chapters (only made for the newbies out there), the contents of the main OOP chapter and the good section on PHPUnit and unit testing. He also has a few suggestions of things that could make the book a bit better, including a personal suggestion on code formating and braces.

tagged with: book review php5 object oriented programming packt publishing hasinhayder

CodeUtopia.net:
Is PHP a good first language?
0 comments :: posted Thursday May 01, 2008 @ 13:39:53
voice your opinion now!

The CodeUtopia blog asks the online community for their opinion - what do you think of PHP as a first language?

Sometimes I've seen people say PHP is a bad first language, because it teaches bad programming habits. But is this actually true at all? Often those who say that don't really like PHP themselves either, many times because of equally untrue reasons.

They argue both sides of the situation, mentioning what could make for a good first language, why PHP is a "nearly perfect" fit for it and some arguing points for the other side as to why PHP isn't the best option.

tagged with: good first programming language argument pro con

Debuggable Blog:
Programming Psychology - Return home early
0 comments :: posted Monday April 28, 2008 @ 14:36:43
voice your opinion now!
Felix Geisendorfer is taking an interesting approach to defining programming in this new post to the Debuggable blog - he's coming at it more from the level of the perception the programmer has about writing good code.

I believe understanding the patterns in your own thinking will by far make the biggest impact on how good you will get as a programmer. Forget design patterns, forget unit testing, forget all those functions you know. Important is to question why they exist and how they could be improved.

He illustrates through a few examples what he means. He describes one such thought method, the "return home early" process - basically, if something looks too complex for its own good, it probably is. He offers a different way of thinking about it too, a more visual way that can help simplify things even more by laying out the pieces and seeing where they all fit.

tagged with: psychology programming return home early complexity simple visualize


ajax pecl framework conference database cakephp zendframework mysql PEAR code security package application job book zend PHP5 release releases developer

All content copyright, 2008 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework