本文整理汇总了PHP中header::programing方法的典型用法代码示例。如果您正苦于以下问题:PHP header::programing方法的具体用法?PHP header::programing怎么用?PHP header::programing使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类header
的用法示例。
在下文中一共展示了header::programing方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
function index()
{
$header = new header();
$data['csrf_test_name'] = $this->security->get_csrf_hash();
if (!isset($_REQUEST['render'])) {
if (!isset($_REQUEST['category'])) {
$header->programing("Lập trình web với HTML,CSS và Javascript");
$this->load->view('lap_trinh/html/html', $data);
}
if (isset($_REQUEST['category'])) {
switch ($_REQUEST['category']) {
case 'editor':
$header->programing("Trình soạn thảo HTML");
$this->load->view('lap_trinh/html/editor', $data);
break;
case 'basic':
$header->programing("HTML căn bản");
$this->load->view('lap_trinh/html/basic', $data);
break;
case 'element':
$header->programing("Thành phần của trang HTML");
$this->load->view('lap_trinh/html/element', $data);
break;
}
}
}
if (isset($_REQUEST['render'])) {
$content = $_REQUEST['render'];
$data['render'] = $content;
$data['return'] = $_REQUEST['return'];
$this->load->view('runcode/html', $data);
}
}
示例2: web
function web()
{
redirect('http://myweb.pro.vn/html');
$header = new header();
$header->programing("Học lập trình");
$this->load->view('lap_trinh/web');
}
示例3: index
function index()
{
header("X-XSS-Protection: 0");
$header = new header();
$data['csrf_test_name'] = $this->security->get_csrf_hash();
if (!isset($_REQUEST['render'])) {
if (!isset($_REQUEST['category'])) {
$header->programing("Lập trình web với Javascript");
$this->load->view('lap_trinh/javascript/javascript', $data);
}
if (isset($_REQUEST['category'])) {
switch ($_REQUEST['category']) {
case 'intro':
$header->programing("Giới thiệu JavaScript");
$this->load->view('lap_trinh/javascript/intro_javascript', $data);
break;
case 'js_where_to':
$header->programing("JavaScript có thể đặt ở đâu");
$this->load->view('lap_trinh/javascript/js_where_to', $data);
break;
case 'js_output':
$header->programing("Xuất kết quả bằng JavaScript");
$this->load->view('lap_trinh/javascript/js_output', $data);
break;
}
}
}
if (isset($_REQUEST['render'])) {
$content = $_REQUEST['render'];
$data['render'] = $content;
if (isset($_REQUEST['in_page_rel'])) {
$data['return'] = $_REQUEST['return'] . $_REQUEST['in_page_rel'];
}
if (!isset($_REQUEST['in_page_rel'])) {
$data['return'] = $_REQUEST['return'];
}
$this->load->view('runcode/html', $data);
}
}