Trouble using posix_kill in php

后端 未结 1 1107
终归单人心
终归单人心 2021-01-28 19:14

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()

相关标签:
1条回答
  • 2021-01-28 19:56

    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.

    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.

    0 讨论(0)
提交回复
热议问题