本文整理匯總了PHP中Test::f1方法的典型用法代碼示例。如果您正苦於以下問題:PHP Test::f1方法的具體用法?PHP Test::f1怎麽用?PHP Test::f1使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Test
的用法示例。
在下文中一共展示了Test::f1方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: var_dump
{
echo __METHOD__ . "()\n";
var_dump($ar);
}
static function f4(array $ar = array(25))
{
echo __METHOD__ . "()\n";
var_dump($ar);
}
}
Test::f1(array(42));
Test::f2(NULL);
Test::f2();
Test::f3();
Test::f4();
Test::f1(1);
?>
--EXPECTF--
Test::f1()
array(1) {
[0]=>
int(42)
}
Test::f2()
NULL
Test::f2()
NULL
Test::f3()
array(0) {
}
Test::f4()
示例2: f1
<?php
/**
* Part of Windwalker project.
*
* @copyright Copyright (C) 2014 {ORGANIZATION}. All rights reserved.
* @license GNU Lesser General Public License version 2.1 or later.
*/
include_once __DIR__ . '/../../../vendor/autoload.php';
$benchmark = new \Windwalker\Profiler\Benchmark();
class Test
{
public function f1()
{
md5(uniqid());
}
public static function f2()
{
sha1(uniqid());
}
}
$f1 = function () {
$t = new Test();
$t->f1();
};
$f2 = function () {
Test::f2();
};
echo $benchmark->setTimeFormat(\Windwalker\Profiler\Benchmark::MICRO_SECOND)->addTask('test1', $f1)->addTask('test2', $f2)->execute(10000)->render(6, 'asc');