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 Wallabag\Operator\PHP; /** * Provides a "matches" operator used for tag..
Decoded Output download
<?php
namespace Wallabag\Operator\PHP;
/**
* Provides a "matches" operator used for tagging rules.
*
* It asserts that a given pattern is contained in a subject, in a
* case-insensitive way.
*
* This operator will be used to compile tagging rules in PHP, usable
* directly on Entry objects for instance.
* It's registered in RulerZ using a service;
*/
class Matches
{
public function __invoke($subject, $pattern)
{
return false !== stripos($subject, $pattern);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Wallabag\Operator\PHP;
/**
* Provides a "matches" operator used for tagging rules.
*
* It asserts that a given pattern is contained in a subject, in a
* case-insensitive way.
*
* This operator will be used to compile tagging rules in PHP, usable
* directly on Entry objects for instance.
* It's registered in RulerZ using a service;
*/
class Matches
{
public function __invoke($subject, $pattern)
{
return false !== stripos($subject, $pattern);
}
}
Function Calls
None |
Stats
MD5 | fb2eb8849e2d96b7100a89c28f0a7b22 |
Eval Count | 0 |
Decode Time | 85 ms |