Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** @phpstub */ interface Yaf_View_Interface { /** * Assign value to View ..

Decoded Output download

<?php

/** @phpstub */
interface Yaf_View_Interface
{
    /**
     * Assign value to View engine
     *
     * @param string $name
     * @param string $value
     *
     * @return bool 
     */
    public function assign($name, $value = NULL);

    /**
     * Render and output a template
     *
     * @param string $tpl
     * @param array $tpl_vars
     *
     * @return bool 
     */
    public function display($tpl, $tpl_vars = array());

    /**
     * The getScriptPath purpose
     *
     * @return void 
     */
    public function getScriptPath();

    /**
     * Render a template
     *
     * @param string $tpl
     * @param array $tpl_vars
     *
     * @return string 
     */
    public function render($tpl, $tpl_vars = array());

    /**
     * The setScriptPath purpose
     *
     * @param string $template_dir
     *
     * @return void 
     */
    public function setScriptPath($template_dir);
} ?>

Did this file decode correctly?

Original Code

<?php

/** @phpstub */
interface Yaf_View_Interface
{
    /**
     * Assign value to View engine
     *
     * @param string $name
     * @param string $value
     *
     * @return bool 
     */
    public function assign($name, $value = NULL);

    /**
     * Render and output a template
     *
     * @param string $tpl
     * @param array $tpl_vars
     *
     * @return bool 
     */
    public function display($tpl, $tpl_vars = array());

    /**
     * The getScriptPath purpose
     *
     * @return void 
     */
    public function getScriptPath();

    /**
     * Render a template
     *
     * @param string $tpl
     * @param array $tpl_vars
     *
     * @return string 
     */
    public function render($tpl, $tpl_vars = array());

    /**
     * The setScriptPath purpose
     *
     * @param string $template_dir
     *
     * @return void 
     */
    public function setScriptPath($template_dir);
}

Function Calls

None

Variables

None

Stats

MD5 b9dcc9e8fdfee31a0f83781f752fc2cc
Eval Count 0
Decode Time 90 ms