CodeIgniter Framework Filter HTML risk Code _php instance

Source: Internet
Author: User
Tags codeigniter

There are several ways to codeigniter HTML risk code, the most common of which are the following:

1. You can choose to filter using the Htmlspecialchars () method.

2. The $config[' global_xss_filtering ' in the config.php file under the Config folder can be set to:

Copy Code code as follows:
$config [' global_xss_filtering '] = true;

However, this setting will increase the cost of the server. So look at the situation to set.

3. The second parameter in post such as $this->input->post (' content ') can be set to true:

Copy Code code as follows:
$this->input->post (' content ', true);

The above three kinds of methods can realize the simple filtering of the data, depending on the situation.

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.