register_tick_function Register a function for execution on each tick
发表日期:2021-07-01 08:57:16 | 来源: | | 浏览(1002) 分类:函数处理 函数
register_tick_function
(PHP 4 >= 4.0.3, PHP 5, PHP 7, PHP 8)
register_tick_function — Register a function for execution on each tick
说明
register_tick_function(callable
$function
, mixed $arg
= ?, mixed $...
= ?): bool
Registers the given function
to be executed when a
tick is called.
参数
-
function
-
The function name as a string, or an array consisting of an object and a method.
-
arg
-
-
...
-
返回值
成功时返回 true
, 或者在失败时返回 false
。
范例
示例 #1 register_tick_function() example
<?php declare(ticks=1); // using a function as the callbackregister_tick_function('my_function', true); // using an object->method$object = new my_class(); register_tick_function(array(&$object, 'my_method'), true); ?>
更新日志
版本 | 说明 |
---|---|
5.3.0 | Ticks are now supported on threaded web server modules. |
注释
警告
register_tick_function() should not be used with threaded web server modules with PHP 5.2 or lower.
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- call_user_func_array 调用回调函数,并把一个数组参数作为回调函数的参数(0)
- call_user_func 把第一个参数作为回调函数调用(0)
- create_function Create an anonymous (lambda-style) function(0)
- forward_static_call_array Call a static method and pass the arguments as array(0)
- forward_static_call Call a static method(0)
- func_get_arg 返回参数列表的某一项(0)
- func_get_args 返回一个包含函数参数列表的数组(0)
- func_num_args Returns the number of arguments passed to the function(0)
- function_exists 如果给定的函数已经被定义就返回 true(0)
- get_defined_functions 返回所有已定义函数的数组(0)
- register_shutdown_function 注册一个会在php中止时执行的函数(0)
- register_tick_function Register a function for execution on each tick(0)
- unregister_tick_function De-register a function for execution on each tick(0)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)