Christoph M. Becker

Results 597 comments of Christoph M. Becker

> Can you do anything to get things in motion once again? I'm afraid I can't. I'm neither member of this organization/repository, nor did I have any contact with Dan...

`__imp_gdImageCreate` means the linker looks for `gdImageCreate()` declared with `__declspec(dllimport)` which would not make sense for static libgd. To fix this, you need to define `BGDWIN32` and `NONDLL`, e.g. via...

Oh, indeed you can do `rand(10, 1)` etc. @TimWolla, is this deliberate?

Thanks for the clarification @TimWolla! (I've only had looked at `rand()` and `php_mt_rand_common()`.) I think documenting `rand()` as alias of `mt_rand()` makes sense; we should document the few differences, though....

@RV7PR, are you interested in pursuing the [RFC process](https://github.com/php/policies/blob/main/feature-proposals.rst)?

Well, I'm fine with transferring this to doc-en (so the documentation could be updated). Any objections?

The issue is caused by the latest update of timelib (https://github.com/php/php-src/commit/40d06fb645b42409ecb242a6ea4a4fd7207d7a0c). Note that the commit messages states: > Import timelib 2022.12 @derickr, that looks seriously wrong. We had been on...

That had already been changed a few years ago. There has been a bad update to timelib, though. Anyhow, deprecating what we had changed quite some time ago doesn't make...

> timelib version != timezonedb version Oops, mixed that up. So https://3v4l.org/ALC7C is intentional? This should probably be documented in the manual then; while we usually don't document bug fixes,...

I'm not sure about the best course of action. Just removing the `onload()` call here, doesn't solve the problem that `$onload` needs to be deprecated. The only usages of `$onload`...