一、分页

示例代码:

//装载类文件
$this -> load -> library('pagination'); $controller = $this->router->fetch_class();
$action = $this->router->fetch_method(); //每页显示10条数据,共有101条数据
$config['base_url'] = site_url("$controller/$action");
$config['total_rows'] = 101;
$config['per_page'] = 10;
$config['first_link'] = "首页";
$config['prev_link'] = "上一页";
$config['next_link'] = "下一页";
$config['last_link'] = "最后一页"; //如果setment不是3需要设置,默认为3
$config['uri_segment'] = 3; $this -> pagination -> initialize($config); //偏移量
$offset = intval($this -> uri -> segment(3)); $sql = "SELECT * FROM `TEST` LIMIT $offset," . $config['per_page']; $pager = $this -> pagination -> create_links(); $this -> load -> view('article/index', array('pager' => $pager, 'sql' => $sql));

需要注意的是,如果配置了url中隐藏index.php,在site_url中生成的路径中默认还是有index.php,需要在application/config/config.php中改成如下配置:

$config['index_page'] = '';

即可。

二、文件上传

示例代码:

//目录需要手动创建
$config['upload_path'] = './uploads/';
$config['allowed_types'] = "gif|png|jpg|jpeg";
$config['max_size'] = 512;
$config['file_name'] = uniqid(); $this -> load -> library('upload', $config);
//pic为input type=file的name
$this -> upload ->do_upload('pic'); //上传文件信息
$uploadInfo = $this -> upload -> data();
var_dump($uploadInfo);
/*
array (size=14)
'file_name' => string '55a61d04e96f4.jpg' (length=17)
'file_type' => string 'image/jpeg' (length=10)
'file_path' => string 'E:/wamp/www/citest/uploads/' (length=27)
'full_path' => string 'E:/wamp/www/citest/uploads/55a61d04e96f4.jpg' (length=44)
'raw_name' => string '55a61d04e96f4' (length=13)
'orig_name' => string '55a61d04e96f4.jpg' (length=17)
'client_name' => string 'hk.jpg' (length=6)
'file_ext' => string '.jpg' (length=4)
'file_size' => float 125.09
'is_image' => boolean true
'image_width' => int 675
'image_height' => int 900
'image_type' => string 'jpeg' (length=4)
'image_size_str' => string 'width="675" height="900"' (length=24)
*/

即可。

三、session

1、开启

$this -> load -> library('session');

默认已经开启,用上面的代码加载session库。

2、写入

$user = array(
'id' => 3,
'name' => 'jim'
);
$this -> session -> set_userdata("user", $user);

3、读取

$this -> session -> userdata('user')

注:建议在 application/config/config.php 中配置加密key:

$config['encryption_key'] = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx';

四、验证码

示例:

$this->load->helper('captcha');
$vals = array(
//'word' => 'Random word',
'img_path' => './captcha/',
'img_url' => base_url() . 'captcha/',
//'font_path' => './path/to/fonts/texb.ttf',
'img_width' => '200',
'img_height' => 80,
'expiration' => 60,
'word_length' => 10,
'font_size' => 26,
'img_id' => 'Imageid',
'pool' => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', // White background and border, black text and red grid
'colors' => array(
'background' => array(255, 255, 255),
'border' => array(255, 255, 255),
'text' => array(0, 0, 0),
'grid' => array(255, 40, 40)
)
); $cap = create_captcha($vals);
var_dump($cap);
/*
array (size=4)
'word' => string 'hFan3NM4xB' (length=10)
'time' => float 1436954914.3053
'image' => string '<img id="Imageid" src="http://localhost/citest/captcha/1436954914.3053.jpg" style="width: 200; height: 80; border: 0;" alt=" " />' (length=129)
'filename' => string '1436954914.3053.jpg' (length=19)
*/
echo $cap['image'];

注意:需要手动创建存放验证码的文件夹,验证码图片会在超时后自动删除。

CodeIgniter学习笔记五:分页,文件上传,session,验证码的更多相关文章

  1. [原创]java WEB学习笔记49:文件上传基础,基于表单的文件上传,使用fileuoload 组件

    本博客为原创:综合 尚硅谷(http://www.atguigu.com)的系统教程(深表感谢)和 网络上的现有资源(博客,文档,图书等),资源的出处我会标明 本博客的目的:①总结自己的学习过程,相当 ...

  2. PHP学习笔记--文件目录操作(文件上传实例)

    文件操作是每个语言必须有的,不仅仅局限于PHP,这里我们就仅用PHP进行讲解 php的文件高级操作和文件上传实例我放在文章的最后部分.--以后我还会给大家写一个PHP类似于网盘操作的例子 注意:阅读此 ...

  3. PHP学习笔记 02 之文件上传

    我们了解了表单传值后,这些我就可以完成PHP的文件上传了.我们了解PHP文件上传前,先了解PHP文件上传的原理. 一.PHP上传文件原理 第一步:将本地的文件通过form表单上传到服务器的临时目录中, ...

  4. (转载)JavaWeb学习总结(五十)——文件上传和下载

    源地址:http://www.cnblogs.com/xdp-gacl/p/4200090.html 在Web应用系统开发中,文件上传和下载功能是非常常用的功能,今天来讲一下JavaWeb中的文件上传 ...

  5. struts2学习笔记之十:文件上传

    Struts2的上传 1.Struts2默认采用了apache commons-fileupload 2.Struts2支持三种类型的上传组件 3.需要引入commons-fileupload相关依赖 ...

  6. JavaWeb学习总结(五十)——文件上传和下载

    在Web应用系统开发中,文件上传和下载功能是非常常用的功能,今天来讲一下JavaWeb中的文件上传和下载功能的实现. 对于文件上传,浏览器在上传的过程中是将文件以流的形式提交到服务器端的,如果直接使用 ...

  7. SpringMVC学习总结(五)——SpringMVC文件上传例子

    这是用的是SpringMVC-3.1.1.commons-fileupload-1.2.2和io-2.0.1 首先是web.xml <?xml version="1.0" e ...

  8. Kali学习笔记38:文件上传漏洞

    早些年,提到Web渗透,或者搜索一些黑客教程 基本都会看到文件上传漏洞. 它是一个很经典的漏洞 但它本质其实不是一个漏洞,而是网站本身的上传文件功能 不过如果我们上传了Webshell,那么就成为了文 ...

  9. SpringMVC学习笔记八:文件上传下载(转)

    转自:http://www.cnblogs.com/WJ-163/p/6269409.html 一.关键步骤 ①引入核心JAR文件 SpringMVC实现文件上传,需要再添加两个jar包.一个是文件上 ...

  10. SpringBoot学习笔记(8)-----SpringBoot文件上传

    直接上代码,上传文件的前端页面: <body> <form action="/index/upload" enctype="multipart/form ...

随机推荐

  1. April 6 2017 Week 14 Thursday

    If you smile when no one else is around, you really mean it. 独处时的微笑,才是发自内心的. Recently I found I seld ...

  2. 2018.7.30 Oracle的Blog数据库类型读取和存

    package com.lanqiao.shopping.test; import java.io.BufferedInputStream; import java.io.BufferedOutput ...

  3. Spring MVC的一些学习笔记-入门配置和HttpMessageConverter

    1.初步配置 [1]. 配置web.xml以及在web.xml中配置DispatcherServlet: <context-param> <param-name>context ...

  4. MCV 的几种表单提交方式

    一,MVC  HtmlHelper方法 Html.BeginForm(actionName,controllerName,method,htmlAttributes){}   其中actionName ...

  5. javaweb基础(39)_数据库连接池

    一.应用程序直接获取数据库连接的缺点 用户每次请求都需要向数据库获得链接,而数据库创建连接通常需要消耗相对较大的资源,创建时间也较长.假设网站一天10万访问量,数据库服务器就需要创建10万次连接,极大 ...

  6. PCA 实例演示二维数据降成1维

    import numpy as np # 将二维数据降成1维 num = [(2.5, 2.4), (0.5, 0.7), (2.2, 2.9), (1.9, 2.2), (3.1, 3.0), (2 ...

  7. Linux关闭开启防火墙命令

    在外部访问CentOS中部署应用时,需要关闭防火墙. 关闭防火墙命令:systemctl stop firewalld.service 开启防火墙:systemctl start firewalld. ...

  8. Linux基础知识随笔记

    linux文件属性 ls -h human-readable以人类可读的形式显示 -i 显示inode号码 [root@oldboyedu55-bjb ~]# ls -ihl total 8.0K 3 ...

  9. JQ常用方法(哈哈)

    1ajax请求 $(function(){   $("#send").click(function(){     $.ajax({     type:"get" ...

  10. py2exe安装使用

    一.简介 py2exe是一个将python脚本转换成windows上的可独立执行的可执行程序(*.exe)的工具,这样,你就可以不用装python而在windows系统上运行这个可执行程序. py2e ...