Trouble using posix_kill in php(在 php 中使用 posix_kill 的问题)
问题描述
我正在使用 php 5.5.11
,当我尝试调用 posix_kill
时,出现以下错误:致命错误:在第 861 行调用/var/www/.../someScript.php 中未定义的函数 posix_kill()
I'm using php 5.5.11
and when I try to call posix_kill
I get the following error:
Fatal error: Call to undefined function posix_kill() in /var/www/.../someScript.php on line 861
我不确定还有哪些相关信息,请随时询问.
I'm not sure what more information is relevant, feel free to ask.
推荐答案
您需要安装 PHP 的 posix
扩展来实现该功能.如果没有那个扩展,函数就没有定义,这会导致错误.
You need to install PHP's posix
extension which implements that function. Without that extension the function simply is not defined, which leads to the error.
如何安装这样的扩展包取决于您的操作系统.最简单的是在 Linux 中,您可以在软件管理系统中单击一下,即可搜索、识别、下载和安装软件包.
How to install such an extension package depends on your operating system. Easiest is in Linux where you can search, identify, download and install packages with a single click inside the software management system.
这篇关于在 php 中使用 posix_kill 的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 php 中使用 posix_kill 的问题
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01