php一些常規動態設定與獲取

2022-03-13 07:09:29 字數 935 閱讀 8081

error_reporting(e_all);

ini_set('display_errors', true);

ini_set('display_startup_errors', true);

ini_set('max_execution_time', '600'); //設定最大執行時間

date_default_timezone_get();//使用以下語句來查詢當前時區設定

date_default_timezone_set('prc');//使用以下語句設定當前時間為北京時間

<?php

//禁用錯誤報告

error_reporting(0);

//報告執行時錯誤

error_reporting(e_error | e_warning | e_parse

);

//報告所有錯誤

error_reporting(e_all

); ?>

<?php

error_reporting(255); //

列出所有提示

error_reporting(0); //

不顯示所有提示

error_reporting(7); //

建議使用

?>

方法有三:

1、在php.ini裡面設定

max_execution_time = 1800;
2、通過php

的ini_set函式設定

ini_set("max_execution_time", "1800");
3、通過set_time_limit 函式設定

set_time_limit(1800) ;

php一些常規動態設定與獲取

error reporting e all ini set display errors true ini set display startup errors true ini set max execution time 600 設定最大執行時間 date default timezone ge...

php一些常規動態設定與獲取

error reporting e all ini set display errors true ini set display startup errors true ini set max execution time 600 設定最大執行時間 date default timezone ge...

git 一些常規指令

1.git初始化,新建乙個本地庫 git init 2.git help 檢視所有指令git help 3.git clone url 轉殖遠端庫 git clone 4.git remote add origin url 新增遠端庫 git remote add origin 5.git remo...