Fork me on GitHub
a Sensio Labs Product

Jump & Run (v3.28.0) edition

Rule combine_nested_dirname

Replace multiple nested calls of dirname by only one call with second $level parameter. Requires PHP >= 7.0.

Warning

Using this rule is risky

Risky when the function dirname is overridden.

Examples

Example #1

--- Original
+++ New
 <?php
-dirname(dirname(dirname($path)));
+dirname($path, 3);
The logo is © 2010-2022 Sensio Labs