php 執行程式分析

2021-09-07 06:54:26 字數 423 閱讀 5008

<?php

$start = microtime(true

);//

index.php

$end = microtime(true

);$time = number_format(($end - $start), 2);

echo 'this page loaded in ', $time, ' seconds';

?>

strace -o /tmp/output.txt -t -tt -f -e trace=all -p 31920

某些資料的展示與否最好把效能也考慮上

正則的效率不高,能不用盡量不用

主題中如果同乙個變數要使用多次,請將其先儲存至乙個臨時變數

快取很重要

strace是個好工具

python 執行可執行程式

python do exe.pyw coding utf 8 import os exe dir c program files q dir exe file q dir.exe def do cmd dir,file if os.access dir,os.f ok os.chdir dir if...

linux自動執行程式

linux 的啟動指令碼位於 etc init.d rcs 注rcs中 s是大寫字母 vi etc init.d rcs 進入vi後,按i 編輯.移動上下左右鍵到,你想插入的位置,然後打字。這時跟記事本是一樣的。打完字後,按esc 然後輸入 wq 注,第乙個字元是冒號 也要輸入 就儲存退出了。若想自...

Linux後台執行程式

shell command dev null 2 1 最後乙個符號 意思是讓程式在後台執行。dev null 的作用是將標準輸入轉向null,這樣就忽略當前的指令碼標準輸出。2 1 的作用是將標準錯誤連線至標準輸出,也將被忽略。一直不明白1 2的作用。原來!作業系統預設指定3個檔案 0標準輸入 1標...