disable_functions = [function1, function2...]

PHP programming
admin
Site Admin
Posts:7390
Joined:Wed Mar 13, 2019 6:42 am
Contact:
disable_functions = [function1, function2...]

Post by admin » Wed Apr 24, 2019 8:02 pm

disable_functions = [function1, function2...] A welcome addition to PHP4 configuration and one perpetuated in PHP5 is the ability to disable selected functions for security reasons. Previously, this necessitated hand-editing the C code from which PHP was made. Filesystem, system, and network functions should probably be the first to go because allowing the capability to write files and alter the system over HTTP is never such a safe idea.

Post Reply