数组中的变量,这可能吗?语法错误可能

时间:2012-07-30 11:59:07

标签: php arrays variables syntax

首先,我通过代码声明一个我想在多个数组中使用的变量。这是它应该工作的片段,但它没有:

变量:

$test = '<div id="test"> dit is een test </div>'; 

数组:

$sections[] = array( 
                'title' => $test, 
                'icon' => '/img/icons/home.png' 
                );  

标题始终为空: - /

谢谢!

2 个答案:

答案 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'];