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
  • 0 Views
  • 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

Ask A Question

Stats

  • Questions 107k
  • Answers 107k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Another alternative to System.arraycopy: String[] stringArray = Arrays.copyOf(objectArray, objectArray.length, String[].class); May 11, 2026 at 8:59 pm
  • Editorial Team
    Editorial Team added an answer Why implement it yourself? An existing utility like daemon or… May 11, 2026 at 8:59 pm
  • Editorial Team
    Editorial Team added an answer Alternative 1: Not possible. unixODBC needs linux drivers and there… May 11, 2026 at 8:59 pm

Related Questions

I know almost nothing about linq. I'm doing this: var apps = from app
As part of my application I have a function that receives a MethodInfo and
I'm trying to debug a rather complicated formula evaluator written in T-SQL UDFs (don't
How can I implement IHttpSecurity for Webbrowser Control in .NET? I couldn't find any

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.