1
vote
5answers
126 views
Refactoring a method having dependencies within the same object into something more testable (PHP)
I currently have a method within my class that has to call other methods, some in the same object and others from other objects.
class MyClass
{
public function myMethod()
…
22
votes
Have you switched from CodeIgniter to Kohana?
I have used CI, Kohana and Zend:
CI is good for newbies. It gives a nice intro to a couple of concepts. However, if you have time to improve as a developer and keep learning about architect …
2
votes
How to correctly format PHP ‘IF ELSE’ statements?
The PEAR coding standard is the PHP coding standard. I would recommend to get used to it as you will find it in other projects such as Zend, Doctrine, Symfony, Horde and many, many more. …
2
votes
best way to create/split string to tags
I suppose you could first try to clean up the string before splitting it into tags:
# List characters that you would want to exclude from your tags and clean the string
$exclude = a …
4
votes
Can anyone recommend a PHP book that follows good development principles?
Here's a set of PHP specific books that I've found to be stepping stones. I was introduced to lots of very good concepts through them. The authors all have background and experience spanning variou …
0
votes
Building a CMS for bilingual website - need tips
I have built quite a number of bilingual sites on top of custom made CMS's. Depending on how elaborate the content is for each page, I would approach the admin panel differently.
F …
2
votes
Framework Comparison and Overhead
One thing many php developers fall victim of is sacrificing good architecture and sound principles for what they perceive as performance.
You may decide to cut corners in your code, but rem …
