二进制打包后 posix_kill(posix_getpid(), SIGUSR1) 不起作用

forwebreg

二进制打包后 posix_kill(posix_getpid(), SIGUSR1) 不起作用

132 1 0
1个回答

walkor 打赏

二进制不支持reload

  • forwebreg 2024-11-25

    只好
    $path = base_path();
    if (strpos($path, 'phar://') === 0) {
    exec("./{$_ENV['PACKAGE_NAME']} reload");
    }else{
    exec("php start.php reload");
    }

×
🔝