English 中文(简体)
B. 增加记忆限制
原标题:Increase memory limit
  • 时间:2012-01-12 04:40:55
  •  标签:
  • php
  • mysql
最佳回答

Ok感谢所有我都刚刚需要打上鸡场的记忆——限制=94G。 “连接被重新定位——与服务器的连接在上页装时重新开通。 等......

问题回答

在您的网页上使用:

 ini_set( max_execution_time , 3000);
 ini_set( memory_limit , 16M );

这种情形仅对您目前的文本有效。

go through below code. update code and comment as per your requirement

<?php

    echo  <h1>System Configuration</h1> ;
    echo  <br> ;

    //PHP SETUP: all time in seconds

    //ini_set( max_execution_time , 18000);  // set your max execution time that you require for current script
    //ini_set( memory_limit ,  2048M ); //  set memory limit that you require for current script
    //ini_set("max_input_time",  5000 );
    //ini_set( default_socket_timeout ,  5000 );    
    //@set_time_limit(0);

    //DATABASE SETUP: all time in seconds
    //ini_set( mysql.connect_timeout ,  5000 );


    $ini_path       = php_ini_loaded_file();
    $ini_max_time   = ini_get( max_execution_time );
    $ini_memory     = ini_get( memory_limit );          

?>
<div class="hdr">Current Server</div>
<label>Web Server : </label> <?php echo $_SERVER[ SERVER_SOFTWARE ]; ?><br/>
<label>Operating System : </label><?php echo PHP_OS ?><br/>
<label>PHP Version : </label><?php echo phpversion(); ?><br/>
<label>PHP INI Path : </label><?php echo empty($ini_path ) ?  Unable to detect loaded php.ini file  : $ini_path; ?><br/>
<label>PHP SAPI : </label><?php echo php_sapi_name(); ?><br/>
<label>PHP ZIP Archive : </label> <?php echo class_exists( ZipArchive ) ?  Is Installed  :  Not Installed ; ?> <br/>
<label>PHP max_execution_time:</label> <?php echo $ini_max_time === false ?  unable to find  : $ini_max_time; ?><br/>
<label>PHP memory_limit : </label> <?php echo empty($ini_memory) ?  unable to find  : $ini_memory; ?><br/>




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签