Léon Melis
Léon Melis
It would be much cleaner to use the union array operator, like this: ```php [$headerCA, $bodyCA] = explode('/', $dkimTags['c']) + ['simple', 'simple']; ```
I just stumbled upon this ticket via Google. We do not use FrankenPHP, but we have been experiencing very similar issues with PHP instances segfaulting with `malloc(): unaligned tcache chunk...
@withinboredom Can confirm. I've been analyzing backtraces and it seems to be related with `zend_alloc()` and friends, however, if I run the same script with `USE_ZEND_ALLOC=0` I still see the...
@withinboredom unfortunately isn't doesn't appear to be as simple as that. We run PHP scripts for parsing files (so not via a webserver, but from CLI as daemon) and crashes...
I used the GitHub in-browser editing mode to create this quick 'n dirty PR, I didn't think of the tests, apologies! It looks like I just need to adjust the...