PHP中CodeIgniter入门教程——第六课 函数介绍
这一课讲讲一些内置函数的用法。
Cookie
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/* cookie函数 start*/ function cookie(){ $this->load->helper('cookie'); set_cookie('url','www.phperblog.cn',86500); echo get_cookie('url'); $this->load->view('welcome_message'); } /* cookie函数 end*/ |
Url函数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
/* URL 函数 start*/ function url(){ $this->load->helper('url'); //返回站点的URL, 如果在config.php 文件中指定了base_url会返回指定的值,否则自动获取。 $this->load->helper('url'); echo site_url("news/local/123"); //注意:如果config中开启了enable_query_strings,则连接符由/改为?,上面的url会返回这样:http://www.phperblog.cn/index.php?news/local/123 echo '<br>'; echo base_url(); //这个函数和site_url返回相同,只是 index_page 和 url_suffix 不再被追加。 echo '<br>'; echo current_url();//返回当前正在查看的页面的完整URL(包括段)。 echo '<br>'; redirect('/', 'refresh');//直接跳转 $this->load->view('welcome_message'); } /* URL 函数 end*/ |
日期函数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
/* 日期函数 start*/ function date(){ $this->load->helper('date'); echo now();//输出当前时间 echo '<br>'; $datestring = "Year: %Y Month: %m Day: %d - %h:%i %a"; $time = time(); echo mdate($datestring, $time); echo '<br>'; $format = 'DATE_RFC822'; $time = time(); echo standard_date($format, $time); $this->load->view('welcome_message'); } /* 日期函数 end*/ |
- PHP中CodeIgniter入门教程——第五课 类库介绍
- PHP中CodeIgniter入门教程——第七课 模型介绍