关于“php_header_iframe”的问题,小编就整理了【1】个相关介绍“php_header_iframe”的解答:
跪求、在php中怎么用redirect实现页面跳转?首先redirect不是php内置的函数。而是thinkphp框架里的
点击函数可以看到最终是:
header('Location: XXX/');的过滤
使用方法可以查看手则
// 跳转到 edit 操作
$this->redirect('edit');
// 跳转到 UserAction下的edit 操作
$this->redirect('User/edit');
// 跳转到 Admin分组默认模块默认操作
$this->redirect('Admin/');
到此,以上就是小编对于“php_header_iframe”的问题就介绍到这了,希望介绍关于“php_header_iframe”的【1】点解答对大家有用。