English 中文(简体)
仅使用 PHPDoc 查找错误
原标题:Use PHPDoc to find errors only
  • 时间:2012-05-23 19:18:51
  •  标签:
  • php
  • phpdoc

我怎样才能运行 PHPDoc 来获取一个错误列表而不生成完整文件?

我试图为我的 IDE 写入一个插件, 该插件根据 PHPDoc 生成的错误来验证一个文件 。 但是, 我不需要它来经历生成文档的麻烦 。

phpdoc 中找不到此选项。 或者,我可以使用 PHPCodeSniffer 来嗅探我们的违法行为。 phpdoc 的规则是否可用嗅探器形式?

实例错误(我意识到其中一些错误已经作为嗅探可用,但希望放在一处):

  • No short description for class My_Class
  • Argument $input is missing from the Docblock of myMethod()
问题回答

根据phpdoc.org ,您可以生成一个错误清单,其命令如下:

$ phpdoc -d [SOURCE] -t [TARGET] --template checkstyle

链接 也提供了几种替代方法来这样做。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签