Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 36061
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T14:20:03+00:00 2026-05-10T14:20:03+00:00

How can I find any unused functions in a PHP project? Are there features

  • 0

How can I find any unused functions in a PHP project?

Are there features or APIs built into PHP that will allow me to analyse my codebase – for example Reflection, token_get_all()?

Are these APIs feature rich enough for me not to have to rely on a third party tool to perform this type of analysis?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T14:20:03+00:00Added an answer on May 10, 2026 at 2:20 pm

    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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Are there any tools that can find any private functions without any references? (Redundant
is there any Open source static code analysis tool that can help to find
I can't find any documentation on implementing a class that inherits System.Windows.Media.Brush - what
I can't find any PHP script to compute Krippendorff's Alpha . I need this
I'd like to find a tool that can detect redundant/unused tables and stored procedures
I know that you can find any parameters by looking at a positive offset
Is there anyway that I can find out if user has been holding Shift
Is there a tool that will find for me all the css classes that
Is there one? I can find articles that talk about it's implementation from 2008:
I can't find any evidence online of pthread_cond_wait being strange on Mac OS X,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.