我遇到串联问题。我有一个带有表元素的字符串,然后我想用exec
或system
执行生成的字符串这是一个例子:
$array_of_strings("one","two","three");
for($i=0; $i<3; $i++)
{
$new_string = "the number is : ". $array_of_strings[$i] ;
exec('ls '.$new_string, $output); //just use any command ..
}
这根本不起作用..它让我发疯了请帮帮我。谢谢大家。
答案 0 :(得分:2)
您有语法错误,位于:
$array_of_strings("one","two","three");
初始化数组,使用:
$array_of_strings = array("one","two","three");