标签: php octave
我正在尝试将数组传递给octave函数。从PHP中获取HTML表单中的数组
$htmlinput=$_POST['data'] $cmd="(/opt/local/bin/octave --silent --eval "mymult($htmlinput)")"; $output= exec($cmd); echo $output; //My $cmd doesnt take the array $htmlinput.