Php accesses and modifies string characters like Arrays

Source: Internet
Author: User
The character in the string in PHP can be searched and modified by a string starting with 0 and containing numbers in square brackets similar to the array structure,

The character in the string in PHP can be searched and modified by a string starting with 0 and containing numbers in square brackets similar to the array structure,

For example, if you get the second $ str [1] or $ str {1}, {} is not recommended. It is best to use [].
The test is as follows:

The Code is as follows:


// Obtain the last character
$ Str = 'phpddt. com ';
Echo $ str [strlen ($ str)-1]; // m
// Modify the first character
$ Str = 'phpddt. com ';
$ Str [0] = 'a'; // ahpddt.com
// If the number in square brackets is out of the range, it will be blank.
$ Str = 'phpddt. com ';
$ Str [100] = 'y'; // phpddt.com y
// If the non-integer type is converted to an integer
$ Str = 'phpddt. com ';
$ Str ['a'] = 'y'; // phpddt.com y
$ Str = 'phpddt. com ';
$ Str [-1] = 'y'; // an error occurs when the negative number is: Warning: Illegal string offset:-1.

,

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.