Dosyası B dosya A bir dizi nasıl kullanılır

0 Cevap php

Dosyası B dosya A bir dizi kullanmak için doğru yolu nedir?

When u use the example below, i get aan error (in Zend "Notice: Undefined variable: prefs") Then, if i var_dump $prefs, it shows me the correct array of type array.

Örnek:

FILE A

$prefs = array('test', 'anothertest');

FILE B

require_once('PATH_TO_FILE_A');
echo $prefs[0];
//output: test

0 Cevap