Lars Moelleken

Results 77 comments of Lars Moelleken

HHVM seems still to enable "ENT_QUOTES" by default and ignore "ENT_NOQUOTES" and "ENT_COMPAT". test: https://3v4l.org/pLsDn --- ... and also combination of "ENT_QUOTES | ENT_HTML5" isn't working as expected. test: https://3v4l.org/oaI8E

@mrunkel maybe you can push it as draft and I will merge the changes by hand, what do you think?

I see `İ` in the codebase... do you have a example call for me?

Sorry, I can't keep such phpdocs untouched. ;-) Yes I can revert the code changes and keep the test classes.

Same here. I know we should use feature detection and not browser detection in 2021, but you know... :face_with_head_bandage: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182...

I created a simple cache wrapper with support for apcu and e.g. for opcache-file-cache maybe we can use it here? -> https://github.com/voku/simple-cache

I can also copy and past some of the caching classes, (e.g. apcu) most of the stuff should work also for PHP 5.x?

@xuhdev hi, can you please test the HtmlMin library for html compressing (https://github.com/voku/HtmlMin) or can you give me some example code (input + what you expected), thanks! I am currently...

Hi, I am the developer of the underlying anti-xss library, if you share your html that will trigger the false-positives, we can properly fix it. 😊

@jesobreira you can also add namespace for simple functions ```php namespace hooks { function add_action($hook, $function) { $hooks = Hooks::getInstance(); return $hooks->add_action($hook, $function); } //... } ```