Exam 200-710 All QuestionsBrowse all questions from this exam
Question 31

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.)

    Correct Answer: A, B

    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.

Discussion
KirillS

not 'd1', but 'dl' everywhere in the text