Home  >  Article  >  Backend Development  >  How to output backslash in php

How to output backslash in php

(*-*)浩
(*-*)浩Original
2019-09-19 14:19:146187browse

How to output backslash in php

According to the conventional writing method, if we want to output a backslash, then we can directly write the backslash symbol in the output string, but is this okay? Let's try it anyway. (Recommended learning: PHP programming from entry to proficiency)

How to output backslash in php

When running the page of this code, I found that the page reported an error, and the error was a syntax error.

How to output backslash in phpWhy is this? We can see from the php document that this backslash has a special meaning in the string. It is actually an escape character.

How to output backslash in phpSo if we want to output this backslash, we need to add another backslash. The first backslash is for escaping, and the second one is for escaping. A backslash is the actual output string.

How to output backslash in php

#Run the above code again, you can see that no error is reported, and the backslash character can be output correctly.

How to output backslash in php

What if you want to output two backslash characters? We just need to write four backslash symbols. In short, they must be in pairs.

How to output backslash in phpYou can know by running the page that two backslash symbols are successfully output.

How to output backslash in php

The above is the detailed content of How to output backslash in php. For more information, please follow other related articles on the PHP Chinese website!

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:How to add utf8 in phpNext article:How to add utf8 in php