Home  >  Article  >  Backend Development  >  Example of changing the php.ini configuration file

Example of changing the php.ini configuration file

WBOY
WBOYOriginal
2016-07-25 08:54:191004browse
  1. @ini_set('memory_limit', '64M'); /* The maximum memory size occupied by the script*/
  2. @ini_set('max_execution_time', '15'); /* The maximum execution time of the script*/
  3. @ini_set ('post_max_size', '12M'); /* Maximum form upload size*/
  4. @ini_set('upload_max_filesize', '2M'); /* Maximum upload size of a single file*/
  5. @ini_set('session.name', 'anhuizhaopin_sessionid'); /* The name of the SESSIONID*/
  6. @ini_set('session.cookie_httponly', '1'); /* Whether to add the HTTPONLY attribute to the sessionid*/
  7. @ini_set('session.use_trans_sid', '0') ; /* Do not try to get the sessionid from other places */
  8. @ini_set('session.use_cookies', '1'); /* Use cookies to pass the sessionid */
  9. @ini_set('session.auto_start', '0'); /* Do not automatically start session processing*/
  10. @ini_set('session.cookie_lifetime', '3600'); /* Session life cycle*/
  11. @ini_set('session.gc_maxlifetime', '3600'); /* gc Time*/
  12. @ini_set('session.cache_expire', '180'); /* Client cache time*/
  13. @ini_set('file_uploads', '1'); /* Whether to enable uploading files*/
  14. @ini_set ('upload_tmp_dir', 'F:\tmp\'); /* Upload file cache directory*/
Copy code


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn