tags:

views:

64

answers:

1

Why happend this error:

Warning: pcntl_signal(): Error assigning signal in ...

In php5 in CLI, the line is:

pcntl_signal(9,"signalHandlerTemp", false);

I try with SIGKILL and true and nothing!

A: 

SIGNAL 9 is the Kill signal, and you can't catch him

See http://en.wikipedia.org/wiki/SIGKILL#usage

Leclercq Jérémie
Can you first read the question before answer it!!My problem isn't with the signal, instead php!!
ldcl289