微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用PowerShell使用参数执行PHP脚本

如何解决使用PowerShell使用参数执行PHP脚本

我试图通过使用PHP在本地URL中传递request_number调用Powershell文件

在HTML中:

<a href='workflow_execution_progress.PHP?view_id=".$row['request_number']."' title='Click to see the progress of workflow'>

我引用了此链接,但不确定是否使用参数对其进行修改Executing php script on powershell

更新:我的PowerShell

$PHPExe  = "C:\path\to\PHP\install\dir\PHP.exe"
$PHPFile = "C:\path\to\script.PHP"
$PHPArgs = '-f "{0}"' -f $PHPFile  //args like view_id = 1 / 2 /3 (dynamically)
$PHPOutput = & $PHPExe $PHPArgs

解决方法

您可以使用$argv获取传递给脚本的参数数组。

https://www.php.net/manual/en/reserved.variables.argv.php

php script.php arg1 arg2 arg3

<?php
var_dump($argv);
?>

array(4) {
  [0]=>
  string(10) "script.php"
  [1]=>
  string(4) "arg1"
  [2]=>
  string(4) "arg2"
  [3]=>
  string(4) "arg3"
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。