You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker run --rm -it php:alpine php -r 'var_dump(GLOB_BRACE);'
Expected result
int(1024)
Actual result
Warning: Use of undefined constant GLOB_BRACE - assumed 'GLOB_BRACE' (this will throw an Error in a future version of PHP) in Command line code on line 1
string(10) "GLOB_BRACE"
This is an Alpine-specific issue. docker run --rm -it php:stretch php -r 'var_dump(GLOB_BRACE);' produces the expected result.