You work for a shared hosting provider, and your supervisor asks you do disable user scripts to dynamically load PHP extensions using the d1() function. How can you do this? (Choose two.)
You work for a shared hosting provider, and your supervisor asks you do disable user scripts to dynamically load PHP extensions using the d1() function. How can you do this? (Choose two.)
To disable user scripts from dynamically loading PHP extensions using the dl() function, you can set enable_dl to off in the server’s php.ini configuration file, which prevents the dl() function from being used. Additionally, adding dl to the current value of disable_functions in the server’s php.ini configuration file will specifically disable the dl() function, ensuring it cannot be called by user scripts.
not 'd1', but 'dl' everywhere in the text