Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 904 Bytes

string_length_to_empty.rst

File metadata and controls

34 lines (23 loc) · 904 Bytes

Rule string_length_to_empty

String tests for empty must be done against '', not with strlen.

Warning

Using this rule is risky.

Risky when strlen is overridden, when called using a stringable object, also no longer triggers warning when called using non-string(able).

Examples

Example #1

--- Original
+++ New
-<?php $a = 0 === strlen($b) || \STRLEN($c) < 1;
+<?php $a = '' === $b || $c === '';

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer:risky

Using the @PhpCsFixer:risky rule set will enable the string_length_to_empty rule.

@Symfony:risky

Using the @Symfony:risky rule set will enable the string_length_to_empty rule.