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 string. */ cla..

Decoded Output download

<?php

namespace Pagekit\Filter;

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

Did this file decode correctly?

Original Code

<?php

namespace Pagekit\Filter;

/**
 * This filter converts the value to string.
 */
class StringFilter extends AbstractFilter
{
    /**
     * {@inheritdoc}
     */
    public function filter($value)
    {
        return (string) $value;
    }
}

Function Calls

None

Variables

None

Stats

MD5 38eedc401da43a49a1e0a78c9c6b2dda
Eval Count 0
Decode Time 83 ms