Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 702 Bytes

0273.md

File metadata and controls

15 lines (12 loc) · 702 Bytes

The dl() function is used to load PHP extensions on the server at runtime. However, you want to disable it due to some security issue. Which of the following actions will you perform to accomplish the task?

  • A) Set the enable_dl option to 0 in the php.ini file.
  • B) Add the dl() function in the disable_functions list in the PHP.ini configuration file.
  • C) Add the dl() function in the blocked_functions() list in the php.ini file.
  • D) Set the enable_dl option to 1 in the php.ini file.
Answer

Answer: A, B