首先,我通过代码声明一个我想在多个数组中使用的变量。这是它应该工作的片段,但它没有:
变量:
$test = '<div id="test"> dit is een test </div>';
数组:
$sections[] = array(
'title' => $test,
'icon' => '/img/icons/home.png'
);
标题始终为空: - /
谢谢!
答案 0 :(得分:1)
正确声明是
$test = '<div id="test"> dit is een test </div>';
$sections = array(
'title' => $test,
'icon' => '/img/icons/home.png'
);
答案 1 :(得分:0)
尝试使用此代码:
$test = '<div id="test"> dit is een test </div>';
$sections['title'] = $test;
$sections['icon'] = '/img/icons/home.png';
echo $sections['title'];