Operation Basis of thinkphp (II.)

Source: Internet
Author: User

1. $readTime _rank_result=m (' blog ')->order (' Breadtime DESC ')->limit (3)->select ():

A. The return value is a dataset, which can be output in the foreground using the following method:

<volist name= "Readtime" id= "R" >

{$r. Id} nbsp; {$r. Time} </br>//or: {$r [' Id ']} nbsp; {$r [' Time ']}

</volist>

You can also use the loop output:

<foreach name= "Readtime" item= "R" >

{$r. Id} nbsp; {$r. Time} </br>//or: {$r [' Id ']} nbsp; {$r [' Time ']}

</foreach>

The two cycle methods are identical;

B.thinkphp does not support the top () method in SQL, but the built-in limit function can do the same thing.


2. Differences in output methods:

Echo: A single character, string for the input, no output array, no data set, only one output: array; (PHP method)

Var_dump: Printing of long, variable and array, automatically formatted; (PHP method)

Print_r: With Var_dump;


3. In thinkphp, all hyperlink jumps are best implemented using the U function, the format is: U (' Controller name/method name '), if the method is in the controller of this page, then can be written directly to U (' method name ');


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.