Re: [PHP-DEV] Storing the lcname of symbols

2021-03-13 Thread tyson andre
Hi Levi Morrison, > > Hello! > > > > Most of PHP's symbols are case insensitive. This means extensions that > > need to do things with function and method names end up lowercasing > > and hashing the lowercased names, often having to do more memory > > allocations too. Since case insensitive

Re: [PHP-DEV] Storing the lcname of symbols

2021-03-08 Thread Levi Morrison via internals
On Sun, Mar 7, 2021 at 10:21 AM Levi Morrison wrote: > > Hello! > > Most of PHP's symbols are case insensitive. This means extensions that > need to do things with function and method names end up lowercasing > and hashing the lowercased names, often having to do more memory > allocations too.

[PHP-DEV] Storing the lcname of symbols

2021-03-07 Thread Levi Morrison
Hello! Most of PHP's symbols are case insensitive. This means extensions that need to do things with function and method names end up lowercasing and hashing the lowercased names, often having to do more memory allocations too. Since case insensitive symbols is language dictated behavior, it