History log of /PHP-8.2/ext/dom/html5_serializer.c (Results 1 – 2 of 2)
Revision Date Author Comments
# 0870da33 16-Dec-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Use strcspn() to optimize dom_html5_escape_string() (#12948)

* Use strcspn() to optimize dom_html5_escape_string()

This routine implemented by libc uses a faster algorithm than the

Use strcspn() to optimize dom_html5_escape_string() (#12948)

* Use strcspn() to optimize dom_html5_escape_string()

This routine implemented by libc uses a faster algorithm than the old
naive byte-per-byte approach here. It also is often optimized using
SIMD.

* Calculate mask outside of loop

show more ...


# 1492be52 13-Nov-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

[RFC] DOM HTML5 parsing and serialization support (#12111)