PHP和html中的反斜杠:修订间差异

来自三线的随记
(创建页面,内容为“在html当中 console.log('//') 和PHP当中 console.log('//') console.log('///') 有不同结果,先记录着 html <script> account=new RegExp('1\\d{10}')…”)
 
无编辑摘要
 
(未显示同一用户的4个中间版本)
第1行: 第1行:
在html当中
在html当中


console.log('//')
console.log('\\')


和PHP当中
和PHP当中


console.log('//')
console.log('\\')


console.log('///')
console.log('\\\')


有不同结果,先记录着
有不同结果,先记录着
 
<pre>
html
html
<script>
<script>
account=new RegExp('1\\d{10}')
account=new RegExp('1\\d{10}')
console.log(account)
console.log(account)
</script>
</script>


PHP
PHP
html
html
<script>
<script>
account=new RegExp('1\\\d{10}')
account=new RegExp('1\\\d{10}')
console.log(account)
console.log(account)
</script>
</script>
[[分类:Other]]
</pre>
[[分类:Html]]
[[分类:Html]]
[[分类:PHP]]

2019年5月13日 (一) 09:45的最新版本

在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>