mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-15 01:09:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10579 201d5d3c-b55e-5fd7-737f-ddc643e51545
26 lines
669 B
PHP
26 lines
669 B
PHP
<?php
|
|
|
|
/**
|
|
* This variable parser uses PHP's internal code engine. Because it does
|
|
* this, it can represent all inputs; however, it is dangerous and cannot
|
|
* be used by users.
|
|
*/
|
|
class HTMLPurifier_VarParser_Native extends HTMLPurifier_VarParser
|
|
{
|
|
|
|
protected function parseImplementation($var, $type, $allow_null) {
|
|
return $this->evalExpression($var);
|
|
}
|
|
|
|
protected function evalExpression($expr) {
|
|
$var = null;
|
|
$result = eval("\$var = $expr;");
|
|
if ($result === false) {
|
|
throw new HTMLPurifier_VarParserException("Fatal error in evaluated code");
|
|
}
|
|
return $var;
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|