Mobile app interface programming technology-PHP strings for learning and implementation

Source: Internet
Author: User
: This article mainly introduces the mobile app interface programming technology-PHP strings for learning and implementation. if you are interested in PHP tutorials, please refer to them.
  • Single quotes, double quotes

In PHP, you can use single quotation marks ''or double quotation marks. However, PHP allows us to directly include string variables in double quotation marks. The content in a single quotation mark string is generally considered a common character.

$ Str = 'hello'; echo "str is $ str"; // running result: str is helloecho 'Str is $ str '; // running result: str is $ str
  • String connection

PHP uses the English dot. to connect two strings.



  
  • Removes spaces at the beginning and end of a string.

    There are three functions in PHP that can remove the spaces of strings.
    Trim removes spaces at both ends of a string.
    Rtrim removes the right space of a string. r is the abbreviation of right.
    Ltrim removes the left space of a string, and l is the abbreviation of left.



  "; Echo" jar ". ltrim ($ str)." len "."
"; Echo" jar ". rtrim ($ str)." len "."
";?>

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

The above introduces the mobile app interface programming technology-Learning to implement the PHP string, including the content, hope to be helpful to friends interested in the PHP Tutorial.

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.