Tar-6ren">
gpt4 book ai didi

c# - 如果通过 Wscript.shell 调用的外部应用程序抛出异常,则 PHP 脚本会挂起

转载 作者:行者123 更新时间:2023-11-30 20:53:48 24 4
gpt4 key购买 nike

我正在调用控制台应用程序,TPDF.exe 使用以下 PHP 代码在 C# 中创建。

<?php   
$myFile=".."; // This variable holds the xml contents
$folder=dirname(__FILE__);
$exe=dirname(dirname(__FILE__))."\\pdfexe\\TPDF.exe";
$args="\"\"$folder\\$outputfilename\"\" \"\"$folder\\$myFile\"\"";

$WshShell = new COM("WScript.Shell");
$oShellLink = $WshShell->CreateShortcut("$folder\\temp.lnk");
$oShellLink->TargetPath = $exe;
$oShellLink->Arguments = $args;
$oShellLink->WorkingDirectory = dirname($exe);
$oShellLink->WindowStyle = 1;
$oShellLink->Save();
$oExec = $WshShell->Run("$folder\\temp.lnk", 0, false);
//$WshShell->Quit();
$WshShell=null;
$oShellLink=null;
$oExec=null;
unset($WshShell,$oShellLink,$oExec);
unlink("$folder\\temp.lnk");
?>

一切正常。但我面临的问题是,如果应用程序 TPDF.exe 抛出异常(我已捕获并记录),它会使 Apache 服务器无响应,实际上它会挂起 APACHE。我必须停止并重新启动 APACHE 才能使其再次工作。

那么避免这个问题的可行解决方案是什么?可能我必须对上述 PHP 代码或 C# 应用程序源代码进行一些调整??

附言我没有在这里发布 C# 代码,因为它工作正常,唯一的问题是当应用程序抛出异常时 apache 被挂起。

编辑:

实际上挂起的不是 Apache 服务器,而是挂起的 PHP 脚本。当我在浏览器中打开新选项卡并浏览同一站点时,它会正确打开。但是一旦发出运行外部控制台应用程序的请求并且该应用程序抛出异常,页面就会再次挂起。

任何帮助都将不胜感激。

最佳答案

为什么使用 WShell? PHP 具有用于执行外部应用程序的内置命令。这是一个可行的选择还是您有特定的理由不这样做?如果是这样,如果您可以分享这个原因,也许有人可以帮助您以完全不同的方式实现您的目标。

我假设您正在创建一个 PDF 文件,有自定义解决方案的替代方案:

有什么理由不使用这些吗?

接下来,更针对你的问题。

最明显的是,您正在设置 $oShellLink->WindowStyle = 1;,其中 1 表示:

Activates and displays a window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when displaying the window for the first time.

我认为这不是您要查找的内容,因为看起来您正在执行命令行。而是将其设置为 $oShellLink->WindowStyle = 0;:

Hides the window and activates another window.

我在使用 WShell.Run 和 WShell.Exec 时有过一些糟糕的经历,这是一堆热气腾腾的东西,你不应该从远处用棍子触摸它,但无论如何,就这样吧..

关于这些:

  • .Run(strCommand, intWindowStyle, bWaitOnReturn)

    Runs a program in a new process. - .Run on msdn

    它有两个似乎对命令行执行更有意义的参数,intWindowStyle(让我们隐藏窗口..)和 bWaitOnReturn(PHP 是一种顺序执行的语言,所以我们也想顺序执行它对吧?不是真的.. ).

  • .Exec(strCommand)

    The Exec method returns a WshScriptExec object, which provides status and error information about a script run with Exec along with access to the StdIn, StdOut, and StdErr channels. The Exec method allows the execution of command line applications only. The Exec method cannot be used to run remote scripts. Do not confuse the Exec method with the Execute method (of the WshRemote object). - .Exec on msdn

    它只接受 1 个参数,命令,然后返回一个具有整洁属性的对象,允许您比 .Run() 更好地控制命令行执行过程。
    这对于像您这样的命令行脚本更有用。它还会打开 stdErr 等,因此您可以进行更多调试。

试试 .Exec() 我认为它至少会让您更接近问题的答案(因为有更好的调试方法)。您将需要创建一个具有 sleep 功能的循环,以便您可以等待进程完成,这样您可以轻松实现超时并定期检查 stdErr 等,它使您的应用程序响应更快,更可靠。

另请注意,当使用 .Run() 从命令行运行命令行应用程序时,您可能需要使用 %comspec%/c [script] 来运行命令提示符窗口中的应用程序,可以通过将 intWindowStyle 设置为 0 来隐藏。

关于c# - 如果通过 Wscript.shell 调用的外部应用程序抛出异常,则 PHP 脚本会挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19673690/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com