Daniel Wilkowski
Daniel Wilkowski
Currently, `vue-head` removes links with duplicated `id` (so if there was `` rendered in source, and `link` with `id: 'a'` is rendered in runtime, then the previous one is removed)....
Let me know If you approve another anti-pattern? :)
Advanced library for Regular Expressions in PHP: https://t-regx.com/ It: - Maps warnings, errors, flag errors, C-like errors (`preg_last_error()`), return type values and other unexpected situations in PHP regular expressions to...
There is an option to compare two branches (local or remote): ```sh git-branch-status [ base-branch-name compare-branch-name ] ``` And there is also an option to compare each local branch with...
We're trying to make T-Regx reliable on PHP 8.2, probably it currently runs fine on PHP8.2, but we're not sure of that yet. For example, certain error messages from PCRE...
That way, we could build regular expressions with in-pattern flags. ```php Pattern::template("return @();")->pattern('strlen', 'i'); ``` That would match ``` return strlen(); return strLen(); return STRLEN(); ``` but not ``` RETURN...
Currently, users of PHP regexp have only two choices: - `preg_match_all()`, which performs all available matches right away - `preg_match()`, which performs only a single match The problem with `preg_match_all()`,...
To do: - [ ] Change namespace `TRegx\CleanRegex\` to `TRegx\Pattern\` - [x] Change namespace `TRegx\SafeRegex\` to `TRegx\Preg\` - [ ] Design `ReadMe.md` for both projects
Its possible to protect against CatastrophicBacktrackingException when we're going `replace()->only(int)->callback()`, if `Detail` isn't used with `group()`, `all()` or `usingDuplicateName()`.