我想从php文件中执行perl脚本。必须在单击时执行此perl脚本 标签。例如:
<a href="?????">Run now</a>
有谁能告诉我如何提供链接并执行perl脚本?在此先感谢
答案 0 :(得分:0)
您可以使用exec
php函数。
http://php.net/manual/en/function.exec.php
在这种情况下,链接的目标将是一个简单的PHP脚本:
//simpleScript.php
<?php
exec("/path/to/your/perl/script.pl");
// + error and output handling. It depends of your script
// + other actions, return, redirect ...
在你的HTML中:
<a href="path/to/your/php/simpleScript.php">Run now</a>