Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16138 программистов и 1779 роботов. Сейчас ищут 1559 программистов ...
V8Js::executeString - Execute a string as Javascript code
Вернуться к: V8Js
V8Js::executeString
(PECL v8js >= 0.1.0)
V8Js::executeString — Execute a string as Javascript code
Описание
public mixed V8Js::executeString
( string
$script
[, string $identifier
= "V8Js::executeString()"
[, int $flags
= V8Js::FLAG_NONE
]] )
Compiles and executes the string passed with script
as Javascript code.
Список параметров
-
script
-
The code string to be executed.
-
identifier
-
Identifier string for the executed code. Used for debugging.
-
flags
-
Execution flags. This value must be one of the V8Js::FLAG_* constants, defaulting to
V8Js::FLAG_NONE
.-
V8Js::FLAG_NONE
: no flags -
V8Js::FLAG_FORCE_ARRAY
: forces all Javascript objects passed to PHP to be associative arrays
-
Возвращаемые значения
Returns the last variable instantiated in the Javascript code converted to matching PHP variable type.
Вернуться к: V8Js