我試圖從PHP執行TCL腳本。我正在使用PHP的proc_open進行通信。但我無法從tcl腳本中獲得結果。 有人可以通過代碼,讓我知道我要去哪裏錯了嗎?在PHP中使用proc_open函數
PHP代碼
<?php
$app = 'tclsh84.exe';
$spec = array(array("pipe", "r"), array("pipe", "w"), array("pipe", "w"));
$process = proc_open($app, $spec, $pipes);
if (is_resource($process))
{
fwrite($pipes[0], 'source sum.tcl ');
fwrite($pipes[0], 'tclsh test.tcl ');
fclose($pipes[0]);
echo stream_get_contents($pipes[1]);
fclose($pipes[1]);
// echo fread($pipes[1],1024).'<hr>';
proc_close($process);
}
?>
//sum.tcl
proc sum {arg1 arg2} {
set x [expr {$arg1 + $arg2}];
return $x
}
//test.tcl
puts " the sum is [sum 10 9 ] "
你在錯誤管道上看到了什麼? – 2009-08-24 17:54:20
「tclsh」不是Tcl命令。你的意思是「source test.tcl」嗎? – 2009-08-24 17:54:53
我沒有看到任何錯誤。我只是在瀏覽器上看到一個空白頁面。 tclsh是一個命令,它用來執行一個tcl文件。 – Vidya 2009-08-25 00:56:58