7 Tools for analyzing and parsing PHP code, parsing PHP code _php Tutorials

Source: Internet
Author: User
Tags coding standards php source code

7 Tools for parsing and parsing PHP code, parsing PHP code


PHP has become one of the most popular programming languages, but many PHP programmers fret that they can't find the right tools to help analyze and parse PHP code. Today's small series for you to introduce a few very good tools to help programmers improve their efficiency, come together to see it!

PHP Parser

Php-parser is a PHP parser written in PHP (PHP 5.4 and earlier), a special parser ideal for static code analysis. The purpose of the tool is to simplify static code analysis and manipulation, which enables programmers to programmatically manipulate the code of any application.

Phpsandbox

Phpsandbox is a way to run PHP as a standalone process. It provides programmers with the protection of a perimeter script, such as errors, crashes, slow scripts, or scripts that are not suitable for running in code, and can be run as standalone processes.

PHP Mess Detector

PHPMD This tool can detect some potential problems in PHP source code. For example:

    • Bugs that may exist
    • Code that is not up to the best standard
    • Too complex a grammar
    • Parameters, methods, properties that have never been used

Phpcpd

PHPCPD is a tool that looks for similar patterns in code and uses it to identify where code is copied or pasted in the code base. This is a very useful tool in the regular build process that helps programmers analyze code to avoid repeating calls to functions in the code base.

Phpcheckstyle

Phpcheckstyle is a tool that helps PHP programmers check code and report errors, running in PHP 5.0 and later. Invoking Phpcheckstyle via the SVN hook script can force code to conform to pre-programmed coding standards (such as the Pear encoding standard), helping to improve the overall quality of the code in a multi-person collaborative project.

Ubench

Ubench is a development library that evaluates PHP code execution time and memory usage efficiency. Here's how to use it:

1234567891011121314 require_once 'src/Ubench.php';$bench = new Ubench;$bench->start();// Execute some code$bench->end();// Get elapsed time and memoryecho $bench->getTime(); // 156ms or 1.123secho $bench->getTime(true); // elapsed microtime in floatecho $bench->getTime(false, '%d%s'); // 156ms or 1secho $bench->getMemoryPeak(); // 152B or 90.00Kb or 15.23Mbecho $bench->getMemoryPeak(true); // memory peak in bytesecho $bench->getMemoryPeak(false, '%.3f%s'); // 152B or 90.152Kb or 15.234Mb// Returns the memory usage at the end markecho $bench->getMemoryUsage(); // 152B or 90.00Kb or 15.23Mb

PHP Analyzer

PHP Analyzer performs the same flow analysis as the compiler, ensuring that the code performs tests on every line of the potential execution path. This special tool helps developers improve their code quality to ensure productivity.

http://www.bkjia.com/PHPjc/1001453.html www.bkjia.com true http://www.bkjia.com/PHPjc/1001453.html techarticle Parsing and parsing PHP code of 7 big tools, parse PHP code PHP has become one of the most popular programming languages, but there are many PHP programmers are distressed to find the right tool to help themselves ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.