Search Results

1
vote

Tool to find unused functions in php project

Xdebug can also provide code coverage. You could use it in …
1
vote

Making one interface overwrite a method it inherits from another interface in PHP

My first thoughts where the same as Ryans, I don't think interfaces should have constructors. …
1
vote

Looking for Reviews of VS.PHP (Visual Studio Plugin for PHP)

One of the trainees I mentor settled on using VS.php, the debugger seems to work pretty well, but I've only see it working on the apache instance that VS.php fires up for you, not a true remote 'se …
0
votes

PHP performance

The ones I can think of... Loop invariants are always a good one to watch. …
0
votes

ActiveRecord

Whilst not strictly ActiveRecord, Zend_Db_Table is pretty good. …
2
votes

Can I reliably create Excel documents from a PHP application on a Linux server?

I've used the PEAR package with lots of success, but there are some limitations when implementing complex formulas. It has something to do with the way excel stores the formula, along with the last …
1
vote

Is there a Entity Attribute Value (EAV) framework out there for PHP/MySQL?

I think Magento makes use of an EAV style architecture, might be worth having a look in there. Magento is an ecommerce platform bas …
1
vote

PHP Convert HTML Formatted Date

strtotime will handle that date format, giving you a unix timestamp. You can then follow the algorithms on …
1
vote

Does a native php (5+) function exist that does the following in 1 line?

You could return an ArrayObject, like so. <? class MyClass { public static function g …
9
votes

PHP Arrays: A good way to check if an array is associative or sequential?

Surely this is a better alternative. <?php $arr = array(1,2,3,4); $isIndexed = array_values($arr) === $arr; ?> …