ini_set not working

后端 未结 6 394
北恋
北恋 2021-01-07 20:25

Here is the matter:

ini_set(\'display_errors\', \'1\');
ini_set(\'safe_mode\', \'0\');
ini_set(\'allow_url_fopen\', \'1\');
ini_set(\'allow_url_include\', \'1\');         


        
6条回答
  •  北荒
    北荒 (楼主)
    2021-01-07 21:11

    allow_url_fopen can't be modified by ini_set. It's because some ini statements has to be declared in an ini file only.

提交回复
热议问题