discord-php / DiscordPHP

An API to interact with the popular messaging app Discord
MIT License
985 stars 236 forks source link

store buffer contents in string instead of array #976

Closed davidcole1340 closed 1 year ago

davidcole1340 commented 1 year ago

array buffer is stupid inefficient due to the way PHP arrays operate (as hashtables). instead, just store the bytes in a string which is more like a uint8_t*.