PHPからTCLスクリプトを実行しようとしています。私は通信のためにPHPのproc_openを使用しています。しかし、私はtclスクリプトから結果を得ることができません。 誰かがコードを読んで、どこが間違っているのか教えてもらえますか?あなたがアプリケーション(fwrite($pipes[0], "source sum.tcl\n")
)に改行を渡していない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 ] "
エラーパイプには何が表示されますか? –
"tclsh"はTclコマンドではありません。あなたは "source test.tcl"を意味しましたか? –
私はエラーを見ません。ブラウザ上に空白のページしか表示されません。 tclshはコマンドで、tclファイルの実行に使用されます。 – Vidya