Fork me on GitHub
a Sensio Labs Product

15 Keys Accelerate (v3.54.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);

Rule sets

The rule is part of the following rule sets:

References

The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.