News Feed
Jobs Feed
Sections




News Archive
PHP-Coding-Practices.com:
Composing Methods Replace Temp With Query
June 14, 2007 @ 14:25:00

In a new article from PHP-Coding-Practices.com today, Tim Koschuetzki offers a different sort of solution for working with those little temporary variables scattered throughout your code - replacing a temporary variable with a queryable structure.

When you are using a temporary variable to hold the result of an expression, extract the expression into a method. Then replace all references to the temp with the new method. The new method can then be used in other methods.

His suggestion basically replaces the quick temp variable with something slightly more complex but something that can be used anywhere in the class. He uses the example of multiplying an amount times the quantity - first just assigned to a temporary variable inside a method then refactored as the result of another method returning the same thing (but accessible from anywhere).

0 comments voice your opinion now!
temporary variable query method temporary variable query method


blog comments powered by Disqus

Similar Posts

DevShed: Working with Prepared Queries with PDO Objects in PHP 5

Anthony Ferrara: The Anatomy Of Equals - Opcode Analysis

Justin Silverton\'s Blog: Using PHP and Postgres

ThinkPHP Blog: Spooky Action at not so much Distance

Jacob Santos' Blog: Patterns for PHP: Page Controller Draft


Community Events











Don't see your event here?
Let us know!


conference framework podcast introduction zendframework2 code testing unittest opinion language application example release functional series object development phpunit interview community

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