123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- ================================
- Rule ``non_printable_character``
- ================================
- Remove Zero-width space (ZWSP), Non-breaking space (NBSP) and other invisible
- unicode symbols.
- Warning
- -------
- Using this rule is risky
- ~~~~~~~~~~~~~~~~~~~~~~~~
- Risky when strings contain intended invisible characters.
- Configuration
- -------------
- ``use_escape_sequences_in_strings``
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Whether characters should be replaced with escape sequences in strings.
- Allowed types: ``bool``
- Default value: ``true``
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- *Default* configuration.
- .. code-block:: diff
- --- Original
- +++ New
- -<?php echo "Hello World !";
- +<?php echo "\u{200b}Hello\u{2007}World\u{a0}!";
- Example #2
- ~~~~~~~~~~
- With configuration: ``['use_escape_sequences_in_strings' => false]``.
- .. code-block:: diff
- --- Original
- +++ New
- -<?php echo "Hello World !";
- +<?php echo "Hello World !";
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PHP70Migration:risky <./../../ruleSets/PHP70MigrationRisky.rst>`_
- - `@PHP71Migration:risky <./../../ruleSets/PHP71MigrationRisky.rst>`_
- - `@PHP74Migration:risky <./../../ruleSets/PHP74MigrationRisky.rst>`_
- - `@PHP80Migration:risky <./../../ruleSets/PHP80MigrationRisky.rst>`_
- - `@PhpCsFixer:risky <./../../ruleSets/PhpCsFixerRisky.rst>`_
- - `@Symfony:risky <./../../ruleSets/SymfonyRisky.rst>`_
|