SATŌ Kentarō
SATŌ Kentarō
The behavior of NaN for half-precision float is not consistent with single/double-float. - _Decoding_: if compiled on Visual Studio (confirmed on v14,15,17), a sign bit (signaling) of half-float NaN returned...
Since PHP has no real array, unpacking both array and map into `array()` can cause loss of information. The patch adds `OPT_ASSOC = false` option to support roundtrip serialization of...
Small optimization for unicodeChr() and unicodeOrd().
Fix string comparison to use operator `===` as PHP tries numeric comparison whenever possible for operator `==`: ``` assert('0' == '00'); assert(null == ''); use DiffMatchPatch\Diff; $dmp = new Diff();...
report() in Html_* family reads source files without I/O layers, and escapes lines using encode_entities() with a parameter $unsafe_chars blank. This escapes high-bit chars (as said in HTML::Entities) into HTML...
When using preg_match('@...@'), preg_quote($rule, '@') is expected to be used to escape input. Currently one of the following warnings occurs when a path contains some meta character: PHP Warning: preg_match():...
The spec says that the inner inline-record tag should not influence the outside of containing record-definitions tag: > > > If a inline-record tag is used within a record-definitions tag/value,...