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 namespace Pagekit\Filter; /** * This filter converts the value to boolean. */ cl..

Decoded Output download

<?php

namespace Pagekit\Filter;

/**
 * This filter converts the value to boolean.
 */
class BooleanFilter extends AbstractFilter
{
    /**
     * {@inheritdoc}
     */
    public function filter($value)
    {
        return (bool) @strval($value);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Pagekit\Filter;

/**
 * This filter converts the value to boolean.
 */
class BooleanFilter extends AbstractFilter
{
    /**
     * {@inheritdoc}
     */
    public function filter($value)
    {
        return (bool) @strval($value);
    }
}

Function Calls

None

Variables

None

Stats

MD5 4c67cb76441124d57d14b41acab3a411
Eval Count 0
Decode Time 70 ms