Answers for "get ini config file php"

2

php.ini settings

/usr/local/etc/php/7.3/php.ini
  
max_execution_time = 3600
max_input_time = 3600
max_input_vars = 10000
memory_limit = 1024M
post_max_size = 1024M
upload_max_filesize = 1024M
max_file_uploads = 200
short_open_tag = On
Posted by: Guest on March-20-2021
0

get php ini config from terminal

php -i | grep 'my_value'
Posted by: Guest on November-24-2020

Browse Popular Code Answers by Language