Two implementation methods of CI framework support $_get _php Example

Source: Internet
Author: User
Tags codeigniter zend framework

This paper illustrates two implementation methods of CI framework support $_get. Share to everyone for your reference, specific as follows:

First, the CI framework supports get after 2.0, so use no pressure!

1. Ways to pass parameters using get:

CI automatically passes over two parts of the URI as arguments to the method. can go to see the handbook: Ci frame Chinese Manual

as follows: localhost/index.php/jb51/func/a/b

Then the method in the controller PHP code is as follows:

<?php
class Jb51 extends Ci_controller {public
 function func ($x, $y)
 {
  echo $x;
  echo $y;
 }
? >

As above: A and B were passed to the Func method

2. Imagine, if you have a long argument, this method is certainly not workable, OK, so do:

In config.php, set ' Uri_protocol ' to

$config [' uri_protocol '] = "path_info";

Add before using $_get

Parse_str ($_server[' query_string '), $_get);

So you can easily pass parameters in such a index.php/jb51/func?x=a&y=b way.

More interested in CodeIgniter related content readers can view the site topics: "CodeIgniter Introductory Course", "CI (CodeIgniter) Framework Advanced Course", "PHP Excellent Development Framework Summary", "thinkphp Introductory Course", " Thinkphp Common Methods Summary, "Zend Framework Introduction Course", "PHP object-oriented Programming Introduction Course", "Php+mysql Database operation Introduction Tutorial" and "PHP common database Operation Skills Summary"

I hope this article will help you with the PHP program design based on CodeIgniter framework.

Related Article

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.