當前位置: 首頁>>代碼示例>>PHP>>正文


PHP header::programing方法代碼示例

本文整理匯總了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);
     }
 }
開發者ID:quantm,項目名稱:mywebprovn,代碼行數:33,代碼來源:html.php

示例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');
 }
開發者ID:quantm,項目名稱:mywebprovn,代碼行數:7,代碼來源:lap_trinh.php

示例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);
     }
 }
開發者ID:quantm,項目名稱:mywebprovn,代碼行數:39,代碼來源:javascript.php


注:本文中的header::programing方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。