Lars Moelleken
Lars Moelleken
| Subject | Details | | :------------- | :---------------------------------------------------------------------------- | | Plugin | Php Inspections (EA Extended), 4.0.7.1 | | Language level | PHP 7.4 | Current behaviour -- ```php...
| Subject | Details | | :------------- | :---------------------------------------------------------------------------- | | Plugin | Php Inspections (EA Extended), 4.0.7.1 | | Language level | PHP 7.4 | Current behaviour -- ```php...
Description: -- It would be nice, if you can warn us that we should use unicode regex instead of ascii regex. Example -- ascii: https://regex101.com/r/lM5Zy8/1 ```regex (?[^\w]|^)(?:onstop)(?\s|[^\w]|$) ``` unicode: https://regex101.com/r/SJ4oDG/1...
... you are using some non UTF-8 compatible string functions like "str_ireplace()", "strrev()" or "str_pad()". I am trying to solve the problem with "Portable UTF-8". (https://github.com/voku/portable-utf8) PS: I have already...
-> https://github.com/voku/HtmlMin --- This change is [](https://reviewable.io/reviews/ziadoz/awesome-php/1031)
-> https://github.com/voku/simple_html_dom --- This is a fork of PHP Simple HTML DOM Parser project but instead of string manipulation we use DOMDocument and modern php classes like "Symfony CssSelector". ---...
-> https://github.com/voku/Arrayy --- This change is [](https://reviewable.io/reviews/ziadoz/awesome-php/1029)
-> https://github.com/voku/anti-xss --- This change is [](https://reviewable.io/reviews/ziadoz/awesome-php/1028)
Hi, I see errors like this: ``` | /thirdparty/composer/voku/portable-utf8/src/voku/helper/UTF8.php:5804 | removed | Function mb_ereg_replace() is removed. | | | | Consider replace with @mb_ereg_replace_e_modifier() | | ``` ... but ```mb_ereg_replace```...
in "composer/maximebf/debugbar/src/DebugBar/DataCollector/TimeDataCollector.php" ```php * Returns the duration of a request * * @return float */ public function getRequestDuration() { if ($this->requestEndTime !== null) { return $this->requestEndTime - $this->requestStartTime; } return...