時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
?
即使使用 PHP 多年,也會偶然發(fā)現(xiàn)一些未曾了解的函數(shù)和功能。其中有些是非常有用的,但沒有得到充分利用。并不是所有人都會從頭到尾一頁一頁地閱讀手冊和函數(shù)參考!
1、任意參數(shù)數(shù)目的函數(shù)
你可能已經知道,PHP 允許定義可選參數(shù)的函數(shù)。但也有完全允許任意數(shù)目的函數(shù)參數(shù)的方法。以下是可選參數(shù)的例子:
以下為引用的內容:
// function with 2 optional arguments
function foo($arg1 = '', $arg2 = '') {
?echo "arg1: $arg1\n";
?echo "arg2: $arg2\n";
}
foo('hello','world');
/* prints:
arg1: hello
arg2: world
*/
foo();
/* prints:
arg1:
arg2:
*/
?
現(xiàn)在讓我們看看如何建立能夠接受任何參數(shù)數(shù)目的函數(shù)。這一次需要使用 func_get_args() 函數(shù):
以下為引用的內容:
// yes, the argument list can be empty
function foo() {
?// returns an array of all passed arguments
?$args = func_get_args();
?foreach ($args as $k => $v) {
? echo "arg".($k+1).": $v\n";
?}
}
foo();
/* prints nothing */
foo('hello');
/* prints
arg1: hello
*/
foo('hello', 'world', 'again');
/* prints
arg1: hello
arg2: world
arg3: again
*/
?
2、使用 Glob() 查找文件
許多 PHP 函數(shù)具有長描述性的名稱。然而可能會很難說出 glob() 函數(shù)能做的事情,除非你已經通過多次使用并熟悉了它。可以把它看作是比 scandir() 函數(shù)更強大的版本,可以按照某種模式搜索文件。
以下為引用的內容:
// get all php files
$files = glob('*.php');
print_r($files);
/* output looks like:
Array
(
??? [0] => phptest.php
??? [1] => pi.php
??? [2] => post_output.php
??? [3] => test.php
)
*/
?
你可以像這樣獲得多個文件:
以下為引用的內容:
// get all php files AND txt files
$files = glob('*.{php,txt}', GLOB_BRACE);
print_r($files);
/* output looks like:
Array
(
??? [0] => phptest.php
??? [1] => pi.php
??? [2] => post_output.php
??? [3] => test.php
??? [4] => log.txt
??? [5] => test.txt
)
*/
?
請注意,這些文件其實是可以返回一個路徑,這取決于查詢條件:
以下為引用的內容:
$files = glob('../images/a*.jpg');
print_r($files);
/* output looks like:
Array
(
??? [0] => ../images/apple.jpg
??? [1] => ../images/art.jpg
)
*/
?
如果你想獲得每個文件的完整路徑,你可以調用 realpath() 函數(shù):
以下為引用的內容:
$files = glob('../images/a*.jpg');
// applies the function to each array element
$files = array_map('realpath',$files);
print_r($files);
/* output looks like:
Array
(
??? [0] => C:\wamp\www\images\apple.jpg
??? [1] => C:\wamp\www\images\art.jpg
)
*/
?
?
?
#p#副標題#e#
3、內存使用信息
?
通過偵測腳本的內存使用情況,有利于代碼的優(yōu)化。PHP 提供了一個垃圾收集器和一個非常復雜的內存管理器。腳本執(zhí)行時所使用的內存量,有升有跌。為了得到當前的內存使用情況,我們可以使用 memory_get_usage() 函數(shù)。如果需要獲得任意時間點的最高內存使用量,則可以使用 memory_limit() 函數(shù)。
以下為引用的內容:
echo "Initial: ".memory_get_usage()." bytes \n";
/* prints
Initial: 361400 bytes
*/
// let's use up some memory
for ($i = 0; $i < 100000; $i++) {
?$array []= md5($i);
}
// let's remove half of the array
for ($i = 0; $i < 100000; $i++) {
?unset($array[$i]);
}
echo "Final: ".memory_get_usage()." bytes \n";
/* prints
Final: 885912 bytes
*/
echo "Peak: ".memory_get_peak_usage()." bytes \n";
/* prints
Peak: 13687072 bytes
*/
?
4、CPU 使用信息
為此,我們要利用 getrusage() 函數(shù)。請記住這個函數(shù)不適用于 Windows 平臺。
以下為引用的內容:
print_r(getrusage());
/* prints
Array
(
??? [ru_oublock] => 0
??? [ru_inblock] => 0
??? [ru_msgsnd] => 2
??? [ru_msgrcv] => 3
??? [ru_maxrss] => 12692
??? [ru_ixrss] => 764
??? [ru_idrss] => 3864
??? [ru_minflt] => 94
??? [ru_majflt] => 0
??? [ru_nsignals] => 1
??? [ru_nvcsw] => 67
??? [ru_nivcsw] => 4
??? [ru_nswap] => 0
??? [ru_utime.tv_usec] => 0
??? [ru_utime.tv_sec] => 0
??? [ru_stime.tv_usec] => 6269
??? [ru_stime.tv_sec] => 0
)
?
*/這可能看起來有點神秘,除非你已經有系統(tǒng)管理員權限。以下是每個值的具體說明(你不需要記住這些):
以下為引用的內容:
ru_oublock: block output operations
ru_inblock: block input operations
ru_msgsnd: messages sent
ru_msgrcv: messages received
ru_maxrss: maximum resident set size
ru_ixrss: integral shared memory size
ru_idrss: integral unshared data size
ru_minflt: page reclaims
ru_majflt: page faults
ru_nsignals: signals received
ru_nvcsw: voluntary context switches
ru_nivcsw: involuntary context switches
ru_nswap: swaps
ru_utime.tv_usec: user time used (microseconds)
ru_utime.tv_sec: user time used (seconds)
ru_stime.tv_usec: system time used (microseconds)
ru_stime.tv_sec: system time used (seconds)
?
要知道腳本消耗多少 CPU 功率,我們需要看看 ‘user time’ 和 ’system time’ 兩個參數(shù)的值。秒和微秒部分默認是單獨提供的。你可以除以 100 萬微秒,并加上秒的參數(shù)值,得到一個十進制的總秒數(shù)。讓我們來看一個例子:
以下為引用的內容:
// sleep for 3 seconds (non-busy)
sleep(3);
$data = getrusage();
echo "User time: ".
?($data['ru_utime.tv_sec'] +
?$data['ru_utime.tv_usec'] / 1000000);
echo "System time: ".
?($data['ru_stime.tv_sec'] +
?$data['ru_stime.tv_usec'] / 1000000);
/* prints
User time: 0.011552
System time: 0
*/
?
盡管腳本運行用了大約 3 秒鐘,CPU 使用率卻非常非常低。因為在睡眠運行的過程中,該腳本實際上不消耗 CPU 資源。還有許多其他的任務,可能需要一段時間,但不占用類似等待磁盤操作等 CPU 時間。因此正如你所看到的,CPU 使用率和運行時間的實際長度并不總是相同的。下面是一個例子:
以下為引用的內容:
// loop 10 million times (busy)
for($i=0;$i<10000000;$i++) {
}
$data = getrusage();
echo "User time: ".
?($data['ru_utime.tv_sec'] +
?$data['ru_utime.tv_usec'] / 1000000);
echo "System time: ".
?($data['ru_stime.tv_sec'] +
?$data['ru_stime.tv_usec'] / 1000000);
/* prints
User time: 1.424592
System time: 0.004204
*/
?
這花了大約 1.4 秒的 CPU 時間,但幾乎都是用戶時間,因為沒有系統(tǒng)調用。系統(tǒng)時間是指花費在執(zhí)行程序的系統(tǒng)調用時的 C
關鍵詞標簽:實用PHP函數(shù)
相關閱讀
熱門文章 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 2021年最好用的10款php開發(fā)工具推薦 php利用淘寶IP庫獲取用戶ip地理位置 在 PHP 中使用命令行工具
人氣排行 詳解ucenter原理及第三方應用程序整合思路、方法 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 PHP中防止SQL注入攻擊 PHP會話Session的具體使用方法解析 PHP運行出現(xiàn)Notice : Use of undefined constant 的解決辦法 PHP如何清空mySQL數(shù)據(jù)庫 CakePHP程序員必須知道的21條技巧 PHP采集圖片實例(PHP采集)