php ini_set函數無效怎麼解決

來源:互聯網
上載者:User
 代碼如下 複製代碼

ini_set(‘max_execution_time’,’10′);
ini_set(‘memory_limit’,’1024M’);

echo ‘max_execution_time = ‘ . ini_get(‘max_execution_time’) . ”
“;
echo ‘memory_limit = ‘ . ini_get(‘memory_limit’) . ”
“;
echo ‘post_max_size = ‘ . ini_get(‘post_max_size’) . ”
“;
echo ‘upload_max_filesize = ‘ . ini_get(‘upload_max_filesize’) . ”
“;

ini_set(‘max_execution_time’,’10′);
ini_set(‘memory_limit’,’1024M’);

注意:

post_max_size,upload_max_filesize用下面的方法是修改不了的.
ini_set(‘post_max_size’,’1024M’);
ini_set(‘upload_max_filesize’,’1024M’);

正確做法是用.htaccess檔案:

 代碼如下 複製代碼

php_value upload_max_filesize “80M”
php_value post_max_size “80M”
php_value max_execution_time “2000″
php_value memory_limit “150M”

執行個體設定max_execution_time

 代碼如下 複製代碼

<?
 $old_max_execution_time = ini_set('max_execution_time', 120);
   echo "old timeout is $old_max_execution_time <br />";

   $max_execution_time = ini_get('max_execution_time');
   echo "new timeout is $max_execution_time <br />";
  
  
  
  echo 'function sets supported in this install are:<br />';
  $extensions = get_loaded_extensions();
  foreach ($extensions as $each_ext)
  {
    echo "$each_ext <br />";
    echo '<ul>';
    $ext_funcs = get_extension_funcs($each_ext);
    foreach($ext_funcs as $func)
    {
       echo "<li> $func </li>";
    }
    echo '</ul>';
  }
?>

補充知識點:

其實在php文檔裡有說明upload_max_filesize的可修改範圍是PHP_INI_PERDIR。
PHP_INI_PERDIR的意思是域內指令可以在php.ini、httpd.conf或.htaccess檔案中修改。
PHP_INI_SYSTEM 域內指令可以在php.ini和httpd.conf檔案中修改
所以upload_max_filesize用int_set是無法修改的。只有可修改範圍是PHP_INI_ALL的才可以用int_set修改。

magic_quotes_gpc 用 get_magic_quotes_gpc() 獲得,不能用 set_magic_quotes_gpc 修改,原因是沒這個函數。而magic_quotes_runtime可以用set_magic_quotes_runtime()來設定

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.