Remove repetitive, hard coded loops and conditions in PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T02:58:57Z http://stackoverflow.com/feeds/question/210475 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/210475/remove-repetitive-hard-coded-loops-and-conditions-in-php 1 Remove repetitive, hard coded loops and conditions in PHP clutch 2008-10-16T22:05:37Z 2008-10-17T10:41:00Z <p>I saw this question asked about C# I would like an answer for PHP. I have some old code that has 4 pages of foreach loops and conditions which just makes it hard to read and follow. How would I make this more OO? I was thinking of using SPL Functions but don't fully understand whats involved yet.</p> http://stackoverflow.com/questions/210475/remove-repetitive-hard-coded-loops-and-conditions-in-php/210505#210505 0 Answer by Jonathan Arkell for Remove repetitive, hard coded loops and conditions in PHP Jonathan Arkell 2008-10-16T22:21:42Z 2008-10-16T22:21:42Z <p>Start slowly. refactor it a piece at a time.</p> <p>If you are looping over a lot of arrays, look at the array functions like <a href="http://ca.php.net/array_map" rel="nofollow"><code>array_map</code></a>, <a href="http://ca.php.net/manual/en/function.array-walk.php" rel="nofollow"><code>array_walk</code></a>, and friends. This is more a functional refactoring then an OO refactoring, but it would carry you pretty far. <strong>If</strong> it made sense to go more OO, then you will have some functions that you could then push into the proper classes as needed.</p> http://stackoverflow.com/questions/210475/remove-repetitive-hard-coded-loops-and-conditions-in-php/210568#210568 1 Answer by gnud for Remove repetitive, hard coded loops and conditions in PHP gnud 2008-10-16T22:48:48Z 2008-10-16T22:48:48Z <p>This code can probably be cleaned up significantly, and pushed far in the direction of OO, without touching SPL.</p> <p>SPL is only needed if you want to alter normal object behaviour in language constructs like foreach(), or in builtins like count(), or in array access funcitons (both operator [] and functions like key(), next() etc).</p> <p>Cleanup suggestions:<ul><li> If the same action is performed several (more than 1 or 2) times in the code, break it out into a function. If this action is to be performed on all elements in a array, consider using <a href="http://php.net/array_walk" rel="nofollow">array_walk</a>. If walking the array doesn't fit for some reason, use a loop :)</li></p> <p><li> If you have several instances of some semantically connected data more complex than a key:value pair, with associated operations, consider wrapping it in a class. But a formally documented assoc. array might suit you just as well. Depends on your style, and on the type of data. The important thing here is the structuring of methods working on th data, and the documentation. Doesn't really matter if you make it a class or not.</li></p> <p><li>After you have done the above steps, break the newly written functions and objects out into separate include files. I tend towards wrapping most everything in a class, so I mostly have one class pr. file. But some helper classes share a file with the main class, etc. You'll get a feel for it. </li></p> <p></ul> </li></p> http://stackoverflow.com/questions/210475/remove-repetitive-hard-coded-loops-and-conditions-in-php/211094#211094 0 Answer by Kris Erickson for Remove repetitive, hard coded loops and conditions in PHP Kris Erickson 2008-10-17T04:37:46Z 2008-10-17T04:37:46Z <p>Some good advice from Johnathan and gnud. Don't worry so much about the SPL, and <a href="http://stackoverflow.com/questions/161975/refactoring-code-when-to-do-what">learn more about refactoring</a>, and look into what <a href="http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring">refactoring tools are available for PHP</a>. </p> <p>Also I can't recommend enough reading <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a>:</p> <p><img src="http://ecx.images-amazon.com/images/I/51RCXGPXQ8L._SL500_AA240_.jpg" alt="alt text" /></p> <p>And of course the canonical <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring Book</a>:</p> <p><img src="http://ecx.images-amazon.com/images/I/519XT0DER6L._SL500_BO2,204,203,200_AA219_PIsitb-sticker-dp-arrow,TopRight,-24,-23_SH20_OU01_.jpg" alt="alt text" /></p> <p>PHP is a difficult language to keep clean of code smells, but with a little perseverance it can be done! And you will thank yourself every day you have to look at your codebase.</p> http://stackoverflow.com/questions/210475/remove-repetitive-hard-coded-loops-and-conditions-in-php/211642#211642 1 Answer by Mr. Matt for Remove repetitive, hard coded loops and conditions in PHP Mr. Matt 2008-10-17T10:18:48Z 2008-10-17T10:18:48Z <p>If I were you, I'd start by writing test code.</p> <p>If you can build up a set of testcases that fully describe the functionality you're refactoring, you can go ahead and rewrite your code safe in the knowledge that it will still work.</p> <p><a href="http://phpunit.sourceforge.net" rel="nofollow">PHPUnit</a> might be a good place to start with this.</p> http://stackoverflow.com/questions/210475/remove-repetitive-hard-coded-loops-and-conditions-in-php/211684#211684 0 Answer by Oddthinking for Remove repetitive, hard coded loops and conditions in PHP Oddthinking 2008-10-17T10:41:00Z 2008-10-17T10:41:00Z <p>If I understand you correctly, you have foreach loops (and the like) nested 4 pages deep, and you are wondering if this OO thing you've heard about can help.</p> <p>You should certainly go ahead and refactor your code to reduce the levels of nesting, and improve the readability, but don't confuse that with Object Orientation.</p> <p>OO is a way of structuring your code to put the definition of the data structures next to the code that manipulates those data structures. While one of its key goals is to aid readability by providing encapsulations of complexity, OO isn't the only way to do it.</p> <p>If you don't yet understand the concepts of OO, you may find it easier to refactor your code to separate the code inside the inner loops into separate functions which (hopefully) will each have a single, simple task.</p> <p>Don't get me wrong; I am an advocate of OO, especially as a technique to provide developers with higher-level concepts to discuss design more efficiently. OO is well worth learning. </p> <p>But don't let a lack of knowledge about OO stop you from pulling the inner code out of the loops and putting them into single-purpose functions.</p> <p>(If I have misunderstood your level of OO knowledge, my apologies.)</p>