Как получить переменную внутри функции, в котором создается новая функция?
Как в данном случае передать переменную $table в функцию $this->sitemap->links ?
$this->get_category($table);
function get_category($table) {
$this->sitemap->links('category_pages.xml', function($map) {
//Тут $table не работает
});
}
$this->get_category($table);
function get_category($table) {
$this->sitemap->links('category_pages.xml', function($map) use ($table) {
//Тут $table не работает
});
}