0

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

变量:

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

数组:

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

标题始终为空:-/

谢谢 !!

4

2 回答 2

1

正确的声明是

$test = '<div id="test"> dit is een test </div>'; 
$sections = array( 
                'title' => $test, 
                'icon' => '/img/icons/home.png' 
                );  
于 2012-07-30T12:12:56.197 回答
0

试试这个代码:

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

$sections['title'] = $test;
$sections['icon'] = '/img/icons/home.png';

echo $sections['title'];
于 2012-07-30T12:06:47.480 回答