什么是\在PHP中的意思?

时间:2017-04-25 03:25:10

标签: php syntax

我之前在php中的链接中看到了\但它是什么意思。例如:

echo "<a href=\'/admin/index.php\'>Admin</a>";

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:-1)

它使得后面的角色给出特定的输出。
在您的情况下,它将输出'而不是使用'来关闭字符串。

它被称为转义并且被大量使用。特别是在Regex。

echo '<a href=\'/admin/index.php\'>Admin</a>'; 输出<a href='/admin/index.php'>

\只是为了逃避&#34; ' s。

注意: echo "<a href=\'/admin/index.php\'>Admin</a>"; // note the encapsulating quotes 输出<a href=\'/admin/index.php\'>Admin</a>