cli_get_process_title Returns the current process title
发表日期:2021-07-01 08:55:06 | 来源: | | 浏览(860) 分类:PHP 选项/信息 函数
cli_get_process_title
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
cli_get_process_title — Returns the current process title
说明
cli_get_process_title(): string|null
Returns the current process title, as set by cli_set_process_title(). Note that this may not exactly match what is shown in ps or top, depending on your operating system.
This function is available only in CLI mode.
参数
此函数没有参数。
返回值
Return a string with the current process title or null
on error.
错误/异常
An E_WARNING
will be generated if the operating system
is unsupported.
范例
示例 #1 cli_get_process_title() example
<?php echo "Process title: " . cli_get_process_title() . "\n"; ?>
参见
cli_set_process_title() - Sets the process title
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- assert_options 设置/获取断言的各种标志(0)
- assert 检查一个断言是否为 false(0)
- cli_get_process_title Returns the current process title(0)
- cli_set_process_title Sets the process title(0)
- dl 运行时载入一个 PHP 扩展(0)
- extension_loaded 检查一个扩展是否已经加载(0)
- gc_collect_cycles 强制收集所有现存的垃圾循环周期(0)
- gc_disable 停用循环引用收集器(0)
- gc_enable 激活循环引用收集器(0)
- gc_enabled 返回循环引用计数器的状态(0)
- gc_mem_caches Reclaims memory used by the Zend Engine memory manager(0)
- gc_status Gets information about the garbage collector(0)
- get_cfg_var 获取 PHP 配置选项的值(0)
- get_current_user 获取当前 PHP 脚本所有者名称(0)
- get_defined_constants 返回所有常量的关联数组,键是常量名,值是常量值(0)
- get_extension_funcs 返回模块函数名称的数组(0)
- get_include_path 获取当前的 include_path 配置选项(0)
- get_included_files 返回被 include 和 require 文件名的 array(0)
- get_loaded_extensions 返回所有编译并加载模块名的 array(0)
- get_magic_quotes_gpc 获取当前 magic_quotes_gpc 的配置选项设置(0)
- get_magic_quotes_runtime 获取当前 magic_quotes_runtime 配置选项的激活状态(0)
- get_required_files 别名 get_included_files()(0)
- get_resources Returns active resources(0)
- getenv 获取一个环境变量的值(0)
- getlastmod 获取页面最后修改的时间(0)
- getmygid 获取当前 PHP 脚本拥有者的 GID(0)
- getmyinode 获取当前脚本的索引节点(inode)(0)
- getmypid 获取 PHP 进程的 ID(0)
- getmyuid 获取 PHP 脚本所有者的 UID(0)
- getopt 从命令行参数列表中获取选项(0)
- getrusage 获取当前资源使用状况(0)
- ini_alter 别名 ini_set()(0)
- ini_get_all 获取所有配置选项(0)
- ini_get 获取一个配置选项的值(0)
- ini_restore 恢复配置选项的值(0)
- ini_set 为一个配置选项设置值(0)
- main 虚拟的main()(0)
- memory_get_peak_usage 返回分配给 PHP 内存的峰值(0)
- memory_get_usage 返回分配给 PHP 的内存量(0)
- php_ini_loaded_file 取得已加载的 php.ini 文件的路径(0)
- php_ini_scanned_files 返回从额外 ini 目录里解析的 .ini 文件列表(0)
- php_sapi_name 返回 web 服务器和 PHP 之间的接口类型(0)
- php_uname 返回运行 PHP 的系统的有关信息(0)
- phpcredits 打印 PHP 贡献者名单(0)
- phpinfo 输出关于 PHP 配置的信息(0)
- phpversion 获取当前的PHP版本(0)
- putenv 设置环境变量的值(0)
- restore_include_path 还原 include_path 配置选项的值(0)
- set_include_path 设置 include_path 配置选项(0)
- set_time_limit 设置脚本最大执行时间(0)
- sys_get_temp_dir 返回用于临时文件的目录(0)
- version_compare 对比两个「PHP 规范化」的版本数字字符串(0)
- zend_thread_id 返回当前线程的唯一识别符(0)
- zend_version 获取当前 Zend 引擎的版本(0)
- 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)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)