0
votes
1answer
28 views

Refactoring 3 functions [closed]

I am refactoring a simple Twitter application I wrote when I noticed what appeared to be three (3) major code smells in the form of the following three functions: private function ...
0
votes
0answers
39 views

How to get rid of singletons in PHP

I recently found out that singletons are bad. I couldn't find answer how to recreate my current code to be without singleton. What i have now: class checker { private static $inst; public ...
1
vote
3answers
51 views

PHP code duplication. At what point is duplicating code the right way to go?

I am using CodeIgniter but this question applies in a general sense too. I have a table of transactions with columns item_name | type | date | price | document I want to do the following in two ...
0
votes
1answer
39 views

php - refactoring a class with object composition

I recently had some time to refactor an old personal project and i wanted to use it as a learning experience on how to best deal with this kind of class. The problem is my class (item) has 2 genders ...
1
vote
2answers
32 views

How to refactor methods and keep split validation at one method?

I'm busy with refactoring of one class and now have doubt how to refactor 2 methods. Here they are: public function transform($transformXml, $importXml, $xsdScheme = '') { ... if ...
-1
votes
4answers
58 views

Simple refactoring [closed]

How can I refactor this code so I have only 1 line for assigning $filename value. $i = 1; $filename = $config->PHOTO_PATH . $list->ID . "_" . $i . ".jpg" while(file_exists($filename)) { ...
0
votes
2answers
58 views

Using PHP how can I load 1000s of configuration files into a database?

In a folder I have 34,000 configuration files. Each file contains an object that has unique configuration specs. Here is an example of the contents of a file: $obj = new obj(); $obj->name = ...
1
vote
2answers
67 views

How to refactor this nested try-catch

I am new to try-catch and have been refactoring lots of code recently to keep up with the principle of DRY. However, I still have a few scenarios that I can't quite work out. For example, in the ...
6
votes
2answers
72 views

Testing PHP code that calls a static method

I want to test this code block which has to call a static class. class SomeModule { public function processFoo() { $foo = FooFactory::getFoo(); // ... Do something to $foo ...
0
votes
4answers
57 views

How to refactor this PHP code?

Here is my code: $aClass = ''; $bClass = ''; $cClass = ''; if ($_GET['data'] == 'a') { $aClass = ' active'; } else if ($_GET['data'] == 'b') { $bClass = ' active'; } else if ($_GET['data'] ...
4
votes
1answer
296 views

Shortcuts with Symfony2 Twig forms : form_widget

I would like to replace: {{ form_errors(form.name) }} {{ form_widget(form.name, { 'attr': {'placeholder': 'Nom'} }) }} By: {{ form.name|field('Nom') }} How could I do that? I tried to do it in a ...
-1
votes
2answers
66 views

which framework we have to use for php [closed]

As I was instructed to convert the standalone files to MVC of PHP (Here converting of files means developing a new code to MVC ), I was in a search of MVC sample code for PHP. but came to know that ...
1
vote
1answer
92 views

PHP Register script

So I'm trying to write this script for my site. It looks quite messed up and broken. Maybe somebody can help me tidy it up a bit and explain what might be incorrect. Also, is there a way to make it ...
0
votes
1answer
120 views

How do I the max limit (3200 tweets) using Twitter's API (1.1)

I have been able to do it but it's in a rather 'ugly' way. One problem I'm facing with refactoring is that I need to call 'max_id' but I need to use a placeholder until I make the first call. I've ...
2
votes
2answers
120 views

Advice on Refactoring Custom Routing Scenario (Lithium Framework)

A continuation from previous question: Custom lithium routing scenario Note: This is specific to the Lithium Framework The Problem I've inherited a URL scheme that doesn't really have any ...
3
votes
1answer
74 views

Should I use public setter to set private attribute value inside class?

Lets assume I have a class Test, which has got a private attribute called $_list, and a public setter. Public setter is used to set the attribute value from the outside. class Test { private ...
2
votes
3answers
66 views

Criteria for choosing refactoring instead of a complete re-write

I'm working on a project which has a codebase of about 3500 files probably a few hundred less than that actually. This project is made in PHP and is a quite messy, in this case it means that the ...
0
votes
2answers
78 views

Organizing CakePHP code

I'm having a problem understanding the difference between component, utility and behavior. I read the Cookbook, but it helped me only partly. For example – I want to resize/crop images on upload. I ...
0
votes
5answers
70 views

Refactoring simple function

I need to show current record status in human readable format. In my database I have an int for this field, so record may have status 1, 2, 3, 4 e.t.c I wrote some code to show current status to ...
1
vote
1answer
79 views

Need help refactoring my redundant code (using MySQL/PHP to populate/build 3 select lists)

I have a meal/recipe database, used for creating daily meal plans. I need to create 3 different select lists (breakfast, lunch, dinner) to display the available recipe options, for each meal_name. ...
0
votes
0answers
36 views

Refactor a rats nest in a template [closed]

I was asked to refactor a hornet's nest and I'm not sure what to do beyond some cosmetic fixes. I'd like to do a better job than just pulling out the simple stuff, but I'm not sure I can get away ...
0
votes
0answers
232 views

Create a fillable PDF from multiple concatenated documents in PHP, all in memory

I currently have an application which takes user data and compiles a multitude of PDF documents, feeding the templates to PDFtk along with FDF forms on disk, created using a modified version of Justin ...
0
votes
1answer
42 views

optimizing an SQL table for selecting participants who signed up for a specific event

I'm developing a participant-event registration web app in php and have come across the following problem: We have multiple events for our tech-fest in college and have around 4000 participants. At ...
2
votes
4answers
181 views

Zend framework module library

I'm working on a Zend Framework (1.11) application that I am porting into modules so that the devs can plug and play various additions to our software and remove just as easily. The issue I'm having ...
0
votes
1answer
26 views

Aid in finding uninstantiated variables in a function in PHP?

I'm refactoring some monolithic code by breaking it up unto function. Since the variables were always in scope in the procedural section, I'm often finding a variable that I overlooked and neglected ...
3
votes
5answers
152 views

How to reduce the number of IF statements?

I have many IF sentences that each start a function. Is there an obvious way to write this code much simpler? Every IF starts different function, but it still looks like an overkill. if ...
2
votes
1answer
51 views

Refactoring ZF Controller file? [closed]

I have a controller that is (IMO) too long (over 1200 lines). The main problem is that I have a lot of actions in it. I can group this actions in 3 groups: calendar related actions events related ...
0
votes
2answers
45 views

Possibilities of refactoring classes which have same extends but invokes methods from each other

There are classes A and B both extend class C and there are some common methods in class C that are needed for both class A and B. There are cases that it needs to invoke the method in class B from ...
0
votes
2answers
71 views

Finding matches between two tables, each with 160k+ rows

I have two tables each with 160k+ rows each. between the two some UUID are shared. I'm and using a foreach loop over the "new" table with an embedded foreach searching the "old" table. When a UUID ...
2
votes
2answers
90 views

Slow PHP/MySQL Query. Re-factor assistance requested. (160k and 300 row table lengths)

So I have a "notes" field that is getting one row (assigned_user_id) updated to new id's. Notes is approx. 160k in length. The users table is around 300. For each notes row I compare the ...
0
votes
1answer
59 views

What is the difference between Rephactor and Scisr PHP refactoring tool?

Rephactor and Scisr both are automated refactor tools for PHP. Both are under development and provides same refactor functions. Can anyone tell me the exact difference in both tools?
5
votes
6answers
171 views

How do I clean up this if/else statement? (refactoring)

I know there must be a nicer way to do this, but whenever I search "&&" i don't get good enough results... <?php if (empty($row[ContactName]) && empty($row[ContactEmail]) ...
1
vote
3answers
168 views

PHP code optimization (refactoring) [closed]

Well, I understand what kind of tool I could use for optimization, profiling etc... so now I know all my bottle necks. But I can't optimize them infinitely. What I mean ? For example, I have spot A as ...
0
votes
1answer
96 views

My php app directory structure is a labyrinth

I'm working on an old php web application. The problem is the organization of all the files is more or less random. My favorite is at one level there is both an 'include' folder and an 'includes' ...
1
vote
3answers
331 views

php/mysql switch from mysql to mysqli or pdo, possible to do gradually

I have a web app that uses a lot of mysql_query calls--mainly because I found these in tutorials and the other places I learned how to run queries. Many people keep suggesting I switch to mysqli as ...
-1
votes
2answers
48 views

To generalize a function that accesses multiple types of object (via function & array)

I now have 2 functions to construct html to display, depending on data source; 1 is from database, the other is from form post. function buildForm_newUser($user){ $html_username = 'Username = ' ...
1
vote
4answers
161 views

How to make a large array usable within a function with good performance

I have a peace of precedural code which is executed in a loop. This peace of code requires one large array, but only for reading and not manipulating purposes. I generate this array once before the ...
2
votes
1answer
122 views

Applying a design pattern for a certain behavior

I was wondering if anyone could provide a design pattern or better implementation solution for this function: public function refundAcceptedDisputes() { ...
-1
votes
1answer
135 views

Unix recursive find / replaced based on dynamic pattern?

So, I inherited some really bad code and am currently just trying to refactor it to the point of functionality before completely overhauling it. One of the problems is that the original programmer ...
1
vote
1answer
262 views

PHP Depend code metrics analysis

I am trying to compare two PHP projects using PHP Depend (http://pdepend.org). One is a page-based PHP application written by a group of students a year ago and the second is mine that I have worked ...
4
votes
3answers
127 views

Refactoring Dilemma: User Account Functionality in PHP

I'm writing a user account system in PHP, with an emphasis on security, but I'm stuck on refactoring it into something cleaner and more usable. The problem is trying to group the user account ...
0
votes
1answer
150 views

Refactoring EAV modelled data with dynamic tables

I have been tasked with refactoring a project that currently uses an EAV model for data storage. In some implementations, the main table holds several million rows. As you can imagine, I consider ...
0
votes
1answer
78 views

Best Way To Dynamically Achieve Offset and Limit Without Multiple Queries To The Database?

I originally had a lightbox that once opened simply fetched all brands from a database which were in a list. The problem is that this list can be quite long so I split the brands out into lists of 10 ...
-1
votes
1answer
98 views

php code improvement refactor

Hi staskoverflow community. How can i improve next structure of PHP 5 code. A list of models $months (more than 12) $month->days (more than 31) $day->clients a list of clients $day->someActions a ...
6
votes
2answers
292 views

Zend Action Controller - refactoring strategy

I've built a first-run web service on Zend Framework (1.10), and now I'm looking at ways to refactor some of the logic in my Action Controllers so that it will be easier for me and the rest of my team ...
0
votes
3answers
260 views

How to avoid string repetition in Zend redirect methods?

I have a Zend project with a lot of controllers and actions using the method $this->_redirect('/controller_name/action_name'); for redirecting to other actions after data processing. I've ...
0
votes
2answers
70 views

Math Table in php?

I want to get table value in php array. $values=array(2,4,6,8,10,12,14,16,18,19,20); I tried something like this <?php for($i=1;$i<=10;$i++) { $values[]=2*$i; } ?> Can i do better ...
4
votes
4answers
2k views

PHP Refactoring Plugin For Eclipse PDT

I'm trying to switch to an IDE for my PHP projects and I'm having problems with refactoring things like filenames etc. Does anybody have experience with the PHP Refactoring Plugin For Eclipse PDT? ...
0
votes
1answer
94 views

How can this PHP logic control structure be refactored?

My gut tells me that there is a better, perhaps one-line refactor for the following code: if (isset($x)) { if (isset($y)) { $z = array_merge($x,$y); } else { $z = ...
5
votes
5answers
230 views

My models all tend to look the same

I've noticed that all my models look very similar. Most of them tend to follow a pattern where they are collections of methods containing active record code that are just slight variations on one ...

1 2 3 4