getrusage() 函数是 PHP 中的内置函数,用于返回当前资源使用情况。
用法:
getrusage(int $mode = 0)
Parameters:
该函数只有一个参数:
- $mode:如果模式为 1,则将使用 RUSAGE_CHILDREN 调用此参数。
返回值:该函数返回一个从系统调用中调用的关联数组。所有条目都可以通过使用其记录字段进行访问。如果失败返回 false。
示例 1:在下面的示例中,将使用getrusage()函数并打印交换。
PHP
<?php
$dat = getrusage();
// Number of swaps
echo $dat["ru_nswap"];
?>
输出:
0
示例 2:在下面的示例中,我们将使用getrusage()函数打印故障页数。
PHP
<?php
$dat = getrusage();
// User time used (seconds)
echo $dat["ru_utime.tv_sec"];
// User time used (microseconds)
echo $dat["ru_utime.tv_usec"];
?>
输出:
08624
注意:根据系统的不同,输出可能会有所不同。
参考: https://www.php.net/manual/en/function.getrusage.php
相关用法
- PHP getrandmax()用法及代码示例
- PHP get_class_vars()用法及代码示例
- PHP get_declared_interfaces()用法及代码示例
- PHP get_parent_class()用法及代码示例
- PHP get_meta_tags()用法及代码示例
- PHP get_resource_id()用法及代码示例
- PHP get_resource_type()用法及代码示例
- PHP get_html_translation_table()用法及代码示例
- PHP getcwd()用法及代码示例
- PHP get_browser()用法及代码示例
- PHP get_defined_vars()用法及代码示例
- PHP get_headers()用法及代码示例
- PHP getdate()用法及代码示例
- PHP gethostbyaddr()用法及代码示例
- PHP gethostbyname()用法及代码示例
- PHP gethostname()用法及代码示例
- PHP gethostnamel()用法及代码示例
- PHP getimagesize()用法及代码示例
- PHP getimagesizefromstring()用法及代码示例
- PHP getprotobyname()用法及代码示例
- PHP getprotobynumber()用法及代码示例
- PHP getservbyname()用法及代码示例
- PHP getservbyport()用法及代码示例
- PHP gettimeofday()用法及代码示例
- PHP gettype()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP getrusage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。