调试通过PHP shell_exec()调用的Python脚本

时间:2014-07-25 17:55:09

标签: php python debugging

我正在使用PHPStorm和PyCharm作为我的IDE。 从PHP调用时,是否可以调试python脚本中发生的事情?

这是我的代码:

$data = array('token' => $this->user_token, 'user_id' => User::getCurrentUser(),
                'archive_id' => $archive_id, 'path' => $path );

$result = shell_exec('python /mypi/Main.py ' . escapeshellarg(json_encode($data)));

理想情况下,我想在PyCharm中设置一个断点,并且每当执行PHP脚本时,都允许我调试代码。

0 个答案:

没有答案