本文整理匯總了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);
}
}