Aşağıdaki durum düşünün
file: ./include/functions/table-config.php
containing: .
.
$tablePages = 'orweb_pages';
.
.
file: ./include/classes/uri-resolve.php
containing: class URIResolve {
.
.
var $category;
.
.
function process_uri() {
...
$this->category = $tablePages;
...
}
.
.
}
file: ./settings.php
containing:
Will this work. I mean will the access to $tablePages from process_uri() be acceptable or will it give erronous results..
.
require_once(ABSPATH.INC.FUNC.'/table-config.php');
require_once(ABSPATH.INC.CLASS.'/uri-resolve.php');
.
.
Hatası oluşabilir düzeltmeleri veya geçici çözümler tavsiye edin.