[PHP]框架CodeIgniter的简单测试源码
程序员文章站
2024-01-18 11:42:40
...
[PHP]在CodeIgniter中如何利用CSS创建视图 [PHP]如何使用CodeIgniter简化页面 网站地址:http://callmewhy.sinaapp.com/index.php/test 后面加上/testcss是测试CSS表单的页面 : http://callmewhy.sinaapp.com/index.php/test /testcss 加上testhead是测试头
[PHP]在CodeIgniter中如何利用CSS创建视图
[PHP]如何使用CodeIgniter简化页面
网站地址:http://callmewhy.sinaapp.com/index.php/test
后面加上/testcss是测试CSS表单的页面:http://callmewhy.sinaapp.com/index.php/test/testcss
加上testhead是测试头文件的插入:http://callmewhy.sinaapp.com/index.php/test/testhead
下面是以上两个案例的脚本文件。
完整的项目下载
首先是控制器Controller,文件名Test.php(要在config.php中配置):
load->view('welcome_view'); } function testHead(){ //测试head页面的引入 $data['mytitle'] ="A website monitoring tool"; $data['mytext'] ="Test!Test!"; $data['myrobots'] ='noindex,nofollow'; $data['mywebtitle']='Web monitoring tool'; $data['base'] = $this->config->item('base_url'); $this->load->view('test_head_view',$data); } function testCss(){ $data['mytitle'] ="A website monitoring tool"; $data['mytext'] ="Test!Test!"; $data['base'] = $this->config->item('base_url'); $data['css'] =$this->config->item('test_css'); $this->load->view('test_css_view',$data); } } ?>
第一个测试CSS引入的view视图,文件名test_css_view.php:
WHY's Test Page "> ">
相应的CSS文件,文件名test.css:
h1{ margin : 5px; padding-left : 10px; padding-right : 10px; background : #ffffff; color : blue; width : 100%; font-size : 36px; } .test{ margin : 5px; padding-left : 10px; padding-right : 10px; background : #ffffff; color : red; width : 100%; font-size : 36px; }
第二个测试head嵌入的view视图,文件名test_head_view.php:
load->view('header_view');?>
第三个是head的文件,文件名head_view.php:
"/> "/>
推荐阅读
-
CI框架源码阅读笔记2 一切的入口 index.php
-
CI框架中通过hook的方式实现简单的权限控制_php技巧
-
CI框架源码解读之利用Hook.php文件完成功能扩展的方法_php实例
-
CodeIgniter框架提示Disallowed Key Characters的解决办法_PHP教程
-
CI框架源码阅读,系统常量文件constants.php的配置_php技巧
-
CodeIgniter框架中关于URL(index.php)的那些事,codeigniter框架_PHP教程
-
php-框架 - codeigniter cakephp thinkphp yii symfony的区别 优势
-
php实现的一个简单json rpc框架实例_PHP
-
[PHP]框架教程:CodeIgniter框架的简易使用
-
CI框架源码阅读,系统常量文件constants.php的配置