我想將這個在Unix系統上運行良好的PHP腳本轉換爲Windows腳本。將基於Unix的PHP腳本轉換爲Windows的批處理文件
我不知道如何重寫它。有人能幫我嗎?
下面是腳本:
$cmd = 'nohup sudo -u '.$user.' bash -c "cd ' .
escapeshellarg($path) . '; VVERBOSE=true QUEUE=' .
escapeshellarg($queue) . ' APP_INCLUDE=' .
escapeshellarg($bootstrap_path) . ' INTERVAL=' .
escapeshellarg($interval) . ' CAKE=' .
escapeshellarg(CAKE) . ' COUNT=' . $count .
' php ./resque.php';
$cmd .= ' > '. escapeshellarg($log_path).' 2>&1" >/dev/null 2>&1 &';
passthru($cmd);
這不是一個bash腳本!它看起來更像perl或PHP。 –
另外,一個更好的想法是描述你想做什麼(以及你自己試圖解決這個問題),而不是讓我們嘗試解碼你的腳本 –