内容简介:用 Phan 檢查 PHP 程式的正確性
Phan 這套也是拿來檢查 PHP 程式用的,也是儘量避免丟出 false alarm。不過 Phan 只能用在 PHP 7+ 環境,原因是使用 php-ast ,另外有一些額外建議要裝的套件:
This version (branch) of Phan depends on PHP 7.1.x with the php-ast extension (0.1.5 or newer, uses AST version 50) and supports PHP version 7.1+ syntax. Installation instructions for php-ast can be found here. For PHP 7.0.x use the 0.8 branch. Having PHP's pcntl extension installed is strongly recommended (not available on Windows), in order to support using parallel processes for analysis (or to support daemon mode).
最新版還只能跑在 PHP 7.2 上面,用的時候要注意一下 XD (我在測試時, require-dev
指定 0.11.0
,結果被說只有 PHP 7.1 不符合 dependency,後來放 *
讓他去抓適合的版本)
像是這樣的程式碼:
class Foo { /** * @param string $p * @return string */ function g($p) { if (!$p) { return null; } return $p; } }
就會產生出對應的警告訊息:
src/Foo.php:13 PhanTypeMismatchReturn Returning type null but g() is declared to return string
也是掛進 CI 裡面的好東西...
以上所述就是小编给大家介绍的《用 Phan 檢查 PHP 程式的正確性》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 佈署 Angular 應用程式至 IIS 虛擬目錄 / 應用程式
- 佈署 Angular 應用程式至 IIS 虛擬目錄 / 應用程式
- matlab—方程式求根
- 八、Golang过程式编程
- 如何降低程式碼複雜度 ?
- 算法系列(1):Google方程式
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。