Ask a question about the grammar

Source: Internet
Author: User
Ask a question of grammar


Route ('/', function () {
echo ' Hello world! ';
});
What does that mean? Never seen this syntax format

share to: more


------Solution--------------------
Closures, php5.3 start support

Route ('/', function () {
echo ' Hello world! ';
});

In the route is a custom function, he needs to pass in two parameters, and the second parameter is a callback function

For PHP < 5.3, you can write
Route ('/', create_function (', ' "Echo ' Hello world! ';"));


They can all be considered
function func () {
echo ' Hello world! ';
}
Route ('/', ' func ');

The Shorthand form
  • 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.