vote up 5 vote down star
3

Does anyone know of a tool that can find unused functions in a php project?

I'm looking for a program that can scan a folder (and sub folders) containing php code and tell me which functions are never referenced.

flag

63% accept rate

4 Answers

vote up 2 vote down

Try out the PHP Test Coverage Tool.

link|flag
vote up 2 vote down check

Thanks Greg and Dave for the feedback. Wasn't quite what I was looking for, but I decided to put a bit of time into researching it and came up with this quick and dirty solution:

<?php
    $functions = array();
    $path = "/path/to/my/php/project";
    define_dir($path, $functions);
    reference_dir($path, $functions);
    echo
    	"<table>" .
    		"<tr>" .
    			"<th>Name</th>" .
    			"<th>Defined</th>" .
    			"<th>Referenced</th>" .
    		"</tr>";
    foreach ($functions as $name => $value) {
    	echo
    		"<tr>" . 
    			"<td>" . htmlentities($name) . "</td>" .
    			"<td>" . (isset($value[0]) ? count($value[0]) : "-") . "</td>" .
    			"<td>" . (isset($value[1]) ? count($value[1]) : "-") . "</td>" .
    		"</tr>";
    }
    echo "</table>";
    function define_dir($path, &$functions) {
    	if ($dir = opendir($path)) {
    		while (($file = readdir($dir)) !== false) {
    			if (substr($file, 0, 1) == ".") continue;
    			if (is_dir($path . "/" . $file)) {
    				define_dir($path . "/" . $file, $functions);
    			} else {
    				if (substr($file, - 4, 4) != ".php") continue;
    				define_file($path . "/" . $file, $functions);
    			}
    		}
    	}		
    }
    function define_file($path, &$functions) {
    	$tokens = token_get_all(file_get_contents($path));
    	for ($i = 0; $i < count($tokens); $i++) {
    		$token = $tokens[$i];
    		if (is_array($token)) {
    			if ($token[0] != T_FUNCTION) continue;
    			$i++;
    			$token = $tokens[$i];
    			if ($token[0] != T_WHITESPACE) die("T_WHITESPACE");
    			$i++;
    			$token = $tokens[$i];
    			if ($token[0] != T_STRING) die("T_STRING");
    			$functions[$token[1]][0][] = array($path, $token[2]);
    		}
    	}
    }
    function reference_dir($path, &$functions) {
    	if ($dir = opendir($path)) {
    		while (($file = readdir($dir)) !== false) {
    			if (substr($file, 0, 1) == ".") continue;
    			if (is_dir($path . "/" . $file)) {
    				reference_dir($path . "/" . $file, $functions);
    			} else {
    				if (substr($file, - 4, 4) != ".php") continue;
    				reference_file($path . "/" . $file, $functions);
    			}
    		}
    	}		
    }
    function reference_file($path, &$functions) {
    	$tokens = token_get_all(file_get_contents($path));
    	for ($i = 0; $i < count($tokens); $i++) {
    		$token = $tokens[$i];
    		if (is_array($token)) {
    			if ($token[0] != T_STRING) continue;
    			if ($tokens[$i + 1] != "(") continue;
    			$functions[$token[1]][1][] = array($path, $token[2]);
    		}
    	}
    }
?>

I'll probably spend some more time on it so I can quickly find the files and line numbers of the function definitions and references; this information is being gathered, just not displayed.

link|flag
This solution is good if you never use call_user_func() or call_user_func_array() or $var() – calebbrown Nov 26 '08 at 7:17
vote up 1 vote down

Xdebug can also provide code coverage. You could use it in combination with the autoprependfile and autoappendfile ini directives to log code coverage of your application during general use.

link|flag
vote up 0 vote down

Stacey,

I'm having the same issue. Did you ever do any more work on your script? Specifically, if I'm correct, it seems to count the function definition in the "refrences" column...

If you're still interested, I'll probably be making some modifications within the next few lines. Feel free to drop me a line - jason AT jasonNOSPACEantmanDOTcom

link|flag

Your Answer

Get an OpenID
or

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