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