There seems to be quite a lot of static code analysis tools for PHP, could you please suggest the one, which can detect exceptions, which are thrown in the PHP code, but are never caught? (the ones, which can theoretically stop the execution on the PHP script).

I would be happy enough to see only stuff like throw new SomeException(), where SomeException extends Exception.

I am not looking for something too sophisticated - just to warn me that if I run someFunctionThatCanThrow ('cause there is throw statement inside) from index.php (you get the point), I can get in trouble. Even if in the runtime that would never happen.

Thanks.

link|improve this question

1  
Impossible in the general case - not only because of eval "$any_string()"; or $this->$anotherstring(). – Piskvor Nov 25 '11 at 11:22
@Piskvor, I would be happy enough to see only throw new SomeException(). I try not use any sort of PHP magic in my code. – Fluffy Nov 25 '11 at 11:25
1  
Such a tool must go through every possible execution path. Thats simply too much (not only for PHP). – KingCrunch Nov 25 '11 at 11:28
@KingCrunch, I would be happy enough to see some false alerts. E.g. if method a can throw an exception (there is throw statement), and it is isn't caught anywhere (for example, ran from the main()), the tool would show that, even if some conditionals were set, that would make it not possible in the runtime. – Fluffy Nov 25 '11 at 11:37
1  
@Fluffy, Me too, I was answering to people who said that it can't be done. – XzKto Nov 25 '11 at 11:59
show 5 more comments
feedback

1 Answer

up vote 2 down vote accepted

PHPLint seems to be the answer. For example, it parses

<?php

function some()
{
    if (time() == 123) {
        throw new Exception("I can't happen");
    }
}

some();

, which will never throw an exception (unless you're in the past), into:

BEGIN parsing of test-cSdHoW
1:      <?php
2:      
3:      function some()
4:      {
5:       if (time() == 123) {
6:        throw new Exception("I can't happen");

          throw new Exception("I can't happen");
                                                \_ HERE
==== 6: notice: here generating exception(s) Exception

          throw new Exception("I can't happen");
                                                \_ HERE
==== 6: ERROR: exception(s) must be caught or declared to be thrown: Exception
7:       }
8:      }
9:      
10:     some();
==== 3: notice: guessed signature of the function `some()' as void()

        some();
             \_ HERE
==== 10: notice: here generating exception(s) Exception

        some();
             \_ HERE
==== 10: Warning: uncaught exception(s): Exception
END parsing of test-cSdHoW
==== ?: notice: unused package `dummy.php'
==== ?: notice: required module `standard'
Overall test results: 1 errors, 1 warnings.

So that's exactly what I was asking for :) Adding a docblock and catching the exception results in no more errors or warnings from PHPLint.

link|improve this answer
Thx, didn't know about this tool. To my TODO list. – XzKto Nov 25 '11 at 12:14
Didn't know PHPLint can do this ^^ – KingCrunch Nov 25 '11 at 12:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.