Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここに私のスクリプトがあります:
#!/usr/bin/php <?php $pid = 18283; $is_ok = posix_kill($pid, SIGKILL); if($is_ok){ echo 'OK'; } else { echo 'NOT OK'; }
スクリプト出力は「NOT OK」です。pid 18283 のプロセスがまだ存在します。私は何を間違っていますか?