PHP和html中的反斜杠

来自三线的随记
Admin讨论 | 贡献2019年3月9日 (六) 17:19的版本 (创建页面,内容为“在html当中 console.log('//') 和PHP当中 console.log('//') console.log('///') 有不同结果,先记录着 html <script> account=new RegExp('1\\d{10}')…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

在html当中

console.log('//')

和PHP当中

console.log('//')

console.log('///')

有不同结果,先记录着

html

<script>

account=new RegExp('1\\d{10}')

console.log(account)

</script>

PHP

html

<script>

account=new RegExp('1\\\d{10}')

console.log(account)

</script>