Thinkphp-i function

Source: Internet
Author: User

thinkphp function: I method browse: 144722 Release Date: 2013/06/01 Category: Documentation Tutorial Keywords: functions

The I method of thinkphp is 3.1.3 is new, if you are a previous version of 3.*, you can refer directly to the variables section of the 3.1 Quick Start Tutorial series.

Overview

As you can see, the I method is a new member of the thinkphp many single-letter functions, whose name comes from the English input (input), which is mainly used for more convenient and secure access to the system input variables, which may be used anywhere, in the following format:
I (' variable ' type. Variable name ', [' Default '],[' Filter Method '])
The type of the variable refers to the type of request or input, including:

Variable Type meaning
Get Get Get Parameters
Post Get Post Parameters
Param Automatically determine request type get get, post or put parameters
Request Get the request parameter
Put Get put parameters
Session Get $_session parameter
Cookies Get $_cookie parameter
Server Get $_server parameter
Globals Get $GLOBALS parameters

Note: Variable types are not case-sensitive.
Variable names are strictly case-sensitive.
Both the default and filtering methods are optional parameters.

Usage

We take the get variable type as an example to illustrate the use of the next I method:

    1. echo I(' get.id '); //equivalent to $_get[' id ']
    2. echo I(' get.name '); //equivalent to $_get[' name ']
Copy Code

Default values are supported:

    1. echo I(' get.id ',0); //If $_get[' ID ' is not present) returns 0
    2. echo I(' get.name ','); //If $_get[' name ' is not present, returns an empty string
Copy Code

Filter by Method:

    1. echo I(' get.name ',' ', 'htmlspecialchars '); //Use the Htmlspecialchars method to filter the $_get[' name '] and return an empty string if it does not exist
Copy Code

Supports direct access to the entire variable type, for example:

    1. I(' get. ' ); //Get the entire $_get array
Copy Code

In the same way, we can get the variables of post or other input types, for example:

  1. I(' post.name ',' ', 'htmlspecialchars '); //Use the Htmlspecialchars method to filter the $_post[' name '] and return an empty string if it does not exist
  2. I(' session.user_id ',0); //Get $_session[' user_id ') default is 0 if not present
  3. I(' cookies. ') ); //Get the entire $_cookie array
  4. I(' server. Request_method '); //Get $_server[' Request_method ']
Copy Code

The Param variable type is a framework-specific method of obtaining a variable that automatically determines the current request type, for example:

    1. echo I(' param.id ');
Copy Code

If the current request type is get, then it is equivalent to $_get[' ID '), if the current request type is POST or put, then it is equivalent to getting $_post[' id ' or put parameter ID.
And the param type variable can also get the URL parameter in the form of a numeric index (must be valid for the PathInfo mode parameter, either get or post), for example:
The current Access URL address is

    1. HTTP://servername/index.php/new/2013/06/01
Copy Code

Then we can pass

    1. echo I(' param.1 '); //Output
    2. echo I(' param.2 '); //Output
    3. echo I(' param.3 '); //Output
Copy Code

In fact, the Param variable type can be simplified to:

    1. I(' id '); //equal to I (' param.id ')
    2. I(' name '); //equal to I (' Param.name ')
Copy code variable filtering

When using the I method, the variable actually passes through two filters, the first is the global filter, the global filter is configured by the Var_filters parameter, it is important to note that after the 3.1 version, the filtering mechanism of the Var_filters parameter has been changed to adopt Array_walk_ Recursive method recursive filtering, the main requirement for the filtering method is that the reference must be returned, so setting htmlspecialchars here is not valid, you can customize a method, for example:

    1. function filter_default(&$value) {
    2. $value = htmlspecialchars($value);
    3. }
Copy Code

Then configure:

    1. ' var_filters '= 'filter_default '
Copy Code

If you need to filter multiple times, you can use:

    1. ' var_filters '= 'filter_default,filter_exp '
Copy Code

The Filter_exp method is a security filtering method built into the framework to prevent injection attacks using the EXP function of the model.

Because the Var_filters parameter is set by the global filtering mechanism, and the use of recursive filtering, has an impact on efficiency, so, we recommend directly to get the variable filter, in addition to the I method of the third parameter to set the filter method, you can also use the configuration Default_ Filter parameter, in fact, the default setting for this parameter is:

    1. ' Default_filter ' = ' htmlspecialchars '
Copy Code

It is also said that all acquisition variables of the I method are htmlspecialchars filtered, then:

    1. I(' get.name '); //equivalent to Htmlspecialchars ($_get[' name ')
Copy Code

Similarly, this parameter can support multiple filters, such as:

    1. ' Default_filter ' = ' strip_tags,htmlspecialchars '
Copy Code
    1. I(' get.name '); //equivalent to Htmlspecialchars (strip_tags ($_get[' name '))
Copy Code

If we specify a filtering method when using the I method, the Default_filter setting is ignored, for example:

    1. echo I(' get.name ',' ', 'strip_tags '); //equivalent to Strip_tags ($_get[' name ')
Copy Code

The third parameter of the I method, if passed in the function name, means that the function is called to filter the variable and return (automatically using Array_map for filtering if the variable is an array), otherwise the PHP built-in Filter_var method is called to filter processing, for example:

    1. I(' Post.email ',',filter_validate_email);
Copy Code

Indicates that $_post[' email ' is formatted and returns an empty string if it does not meet the requirements.
(For more verification formats, refer to the Filter_var usage of the official manual.) )
Or you can use the following characters to identify the way:

    1. I(' Post.email ',' ', 'email ');
Copy Code

The filter names that can be supported must be valid values in the Filter_list method (different server environments may vary) and may support the following:

  1. Int
  2. Boolean
  3. float
  4. Validate_regexp
  5. Validate_url
  6. Validate_email
  7. Validate_ip
  8. string
  9. Stripped
  10. Encoded
  11. Special_chars
  12. Unsafe_raw
  13. Email
  14. wr.
  15. Number_int
  16. Number_float
  17. Magic_quotes
  18. Callback
Copy Code

In some special cases, we do not want to do any filtering, even if the default_filter has been set, you can use:

    1. I(' get.name ',',NULL);
Copy Code

Once the filter parameter is set to NULL, any filtering is no longer performed.

Thinkphp-i function

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.