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 keeps only alphabetic characters of t..

Decoded Output download

<?php

namespace Pagekit\Filter;

/**
 * This filter keeps only alphabetic characters of the value.
 */
class AlphaFilter extends AbstractFilter
{
    /**
     * {@inheritdoc}
     */
    public function filter($value)
    {
        return preg_replace('/[^[:alpha:]]/u', '', (string) $value);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Pagekit\Filter;

/**
 * This filter keeps only alphabetic characters of the value.
 */
class AlphaFilter extends AbstractFilter
{
    /**
     * {@inheritdoc}
     */
    public function filter($value)
    {
        return preg_replace('/[^[:alpha:]]/u', '', (string) $value);
    }
}

Function Calls

None

Variables

None

Stats

MD5 0322c0aed12ad1e849ee96856202e204
Eval Count 0
Decode Time 91 ms