News Feed
Jobs Feed
Sections




News Archive
Tim Koschuetzki's Blog:
Composing Methods Remove Assignments to Parameters
July 06, 2007 @ 10:21:00

In another part of his "Composing Methods" series, Tim Koschuetzki posts about removing assignments to parameters today - working with a temporary variable inside a method rather than the actual passed in value.

When your code assigns to a parameter in a function/method, use a temporary variable instead. [...] It will make your code much more readable and prevents by-reference confusion and therefore big problems in the future.

His example code uses the illustration of calling a price() method in a class to modify the inputVal value based on other inputted information. His suggestion is to not work with the actual inputVal value passed in (so as to avoid issues if it happens to be passed my reference later), but to work with a temporary variable - $result - inside the method.

1 comment voice your opinion now!
method compose remove assignment parameter temporary variable method compose remove assignment parameter temporary variable


blog comments powered by Disqus

Similar Posts

Hasin Hayder's Blog: An interesting bug in ReflectionParameter object in PHP 5.2.1

PHPClasses.org: The Secret PHP Optimization of version 5.4

Tim Koschuetzki's Blog: Composing Methods: Remove Assignments to Parameters

Symfony Blog: New in symfony 1.2: Small things matter (2)

Johan Mares' Blog: Running PHP CLI shell scripts


Community Events











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


phpunit testing introduction rest functional google conference usergroup series framework podcast release development community database opinion language zendframework2 interview symfony2

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