Home  >  Article  >  Backend Development  >  Single quotes and double quotes modify escape characters in strings

Single quotes and double quotes modify escape characters in strings

WBOY
WBOYOriginal
2016-07-25 08:50:34905browse
This is certainly not about the performance of variables in strings under single and double quotes, but the differences in some uncommon scenarios:
1. The length of strings containing escape characters.
[See code section 1]
2. Use escape characters
  1. echo strlen("n");
  2. echo strlen('n');
  3. echo strlen(''');
Copy code


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php 的常用函数 Next article:测试代码效率