PhpSandbox\PHPSandbox::importJSON PHP Method

importJSON() public method

Import JSON template into sandbox
public importJSON ( array | string $template, integer $import_flag )
$template array | string The JSON array or string template to import
$import_flag integer Binary flags signifying which parts of the JSON template to import
    public function importJSON($template, $import_flag = 0)
    {
        return $this->import($template, $import_flag);
    }
PHPSandbox