1

我在一个 wordpress 主题中遇到以下情况,我想在一个名为 navigation.php 的文件中对其进行修改

$array_test = array (1,2,3,4);

function func1()
{
  global $array_test;

  echo "test"; // to ensure that the function has been called
  echo $array_test[2]; // this writes nothing, though the function is being called
}

在名为 header.php 的文件中,该函数func1被调用,仍然$array_test[2]无法访问的值,

你有什么想法?

编辑:我怀疑这是 wordpress 或主题的问题,但我不确定主题是免费的 health_care_wp_theme

4

1 回答 1

2

在 navigation.php 中,(如果该文件中没有类,则定义一个)

class Nav
{ 
     public $array_test = array(1,2,3,4);

     public function func1()
     {  
       echo "test"; // to ensure that the function has been called
       return $this->array_test[2]; 
     }

     public function access_within_class()
     {   
       print_r($this->array_test); 
     }     
}

在 header.php 中

include 'path/to/navigation.php';

$nav = new Nav();
$the_array = $nav->func1(); 
echo $the_array;
于 2013-05-12T12:57:02.077 回答