This extension can be used to provide server-side and client-side form validation by executing the same JavaScript code at both places.(PECL v8js >= 0.1.0)
Esta é a classe principal para a extensão V8Js. Cada instância criada a partir desta classe tem seu próprio contexto no qual todo o JavaScript é compilado e executado.
Veja V8Js::__construct() para mais informações.
$object_name = "PHP",$variables = array(),$extensions = array(),$report_uncaught_exceptions = true$script, string $identifier = "V8Js::executeString()", int $flags = V8Js::FLAG_NONE): mixedV8Js::V8_VERSIONA versão do V8 Javascript Engine.
V8Js::FLAG_NONENenhuma opção.
V8Js::FLAG_FORCE_ARRAYForça todos Objetos JS a serem arrays associativos em PHP.
This extension can be used to provide server-side and client-side form validation by executing the same JavaScript code at both places.You can use function variables (jay!)So the following works:$add = function ($a, $b) { return $a + $b;};$v8 = new V8Js('PHP', array('add' => 'add'));$result = $v8->executeString('PHP.add(1,2)');var_dump($result);yields indeed:int(3)v8js can be also used to render server-side javascript components (see: React.js).