我的项目需要我需要在哪里生成一个前端(php),它具有所有数据输入字段。使用这些数据作为输入,我需要执行一个 TCL 脚本。一旦执行完成,php页面应该能够得到TCL脚本的输出并显示出来。
我生成了一个示例脚本,但无法执行它。你们能帮帮我吗?
提前致谢
我的php脚本是:
<!DOCTYPE html>
<html>
<body>
<?php
function print_procedure ($arg) {
echo exec("/usr/bin/tclsh /test.tcl");
}
$script_name='test.tcl';
print_procedure($script_name);
?>
</body>
</html>
我的 TCL 脚本是:
set a 10
set b 20
set c [expr $a + $b]
return c