The enable_dl PHP configuration setting allows PHP extensions to be loaded dynamically at runtime.
When dynamic loading is enabled, PHP code can load arbitrary PHP extensions by calling the dl function. This can be used to bypass
restrictions set with the open_basedir configuration.
PHP defaults to allowing dynamic loading.
enable_dl setting should be set to 0 in the main PHP configuration.
; php.ini enable_dl=1 ; Noncompliant
; php.ini enable_dl=0