PHP将字符串与表元素连接起来并使用exec执行它

时间:2014-02-24 20:14:29

标签: php arrays exec concat

我遇到串联问题。我有一个带有表元素的字符串,然后我想用execsystem执行生成的字符串这是一个例子:

$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 ..
}

这根本不起作用..它让我发疯了请帮帮我。谢谢大家。

1 个答案:

答案 0 :(得分:2)

您有语法错误,位于:

$array_of_strings("one","two","three");

初始化数组,使用:

$array_of_strings = array("one","two","three");