On 17/9/21 12:58 pm, Tim Starling wrote:
> I would like to know if a patch to make strtolower and strtoupper do
> plain ASCII case conversion would be accepted, or if an RFC should be
> created.
> 

In case it's unclear, I mean that strtolower() should do 8-bit clean
conversion of letters in the 0-127 range, equivalent to
strtr( $val,
 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
 'abcdefghijklmnopqrstuvwxyz' );

-- Tim Starling

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: https://www.php.net/unsub.php

Reply via email to