我有这个JS代码:
var str = "foo bar";
var res1 = str.replace(new RegExp('foo\b', 'g'), "BAZ");
var res2 = str.replace(new RegExp('foo', 'g'), "BAZ");
console.log("Result1: " + res1 + " Result2: " + res2);
Chrome Version 69.0.3497.81 (Official Build) (64-bit)
控制台上的结果是:
Result1: BAZ bar Result2: BAZ bar
现在我在带有扩展名PHP
上测试相同的代码V8Js
:
PHP代码:
<?php
$v8 = new V8Js();
$JS = <<<EOT
var str = "foo bar";
var res1 = str.replace(new RegExp('foo\b', 'g'), "BAZ");
var res2 = str.replace(new RegExp('foo', 'g'), "BAZ");
print("Result1: " + res1 + " Result2: " + res2);
EOT;
echo $v8->executeString($JS);
PHP 7.2.9 (cli) (built: Aug 15 2018 05:57:41) ( NTS MSVC15 (Visual C++ 2017) x64 )
上的结果 带有V8Js Version 2.1.0
扩展名:
Result1: foo bar Result2: BAZ bar
为什么result1
?!!!的结果不同
您正在使用与"
等效的Heredoc。这意味着它将解释为转义。
如果您使用 Nowdoc,它将等同于'
因此不会转义反斜杠。
当你阅读手册时,这并不明显,但你需要阅读Nowdoc才能看到Heredoc是双引号。
Nowdocs 之于单引号字符串,就像 heredocs 之于双引号字符串一样。
这意味着将字符串声明更改为:
$JS = <<<'EOD'
var str = "foo bar";
var res1 = str.replace(new RegExp('foo\b', 'g'), "BAZ");
var res2 = str.replace(new RegExp('foo', 'g'), "BAZ");
print("Result1: " + res1 + " Result2: " + res2);
EOD;