respect-validation/library/Rules/EndsWith.php
2018-01-28 17:38:36 +01:00

56 lines
1.4 KiB
PHP

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
class EndsWith extends AbstractRule
{
public $endValue;
public $identical;
public function __construct($endValue, $identical = false)
{
$this->endValue = $endValue;
$this->identical = $identical;
}
public function validate($input): bool
{
if ($this->identical) {
return $this->validateIdentical($input);
}
return $this->validateEquals($input);
}
protected function validateEquals($input)
{
if (is_array($input)) {
return end($input) == $this->endValue;
}
return mb_strripos($input, $this->endValue, -1, $enc = mb_detect_encoding($input))
=== mb_strlen($input, $enc) - mb_strlen($this->endValue, $enc);
}
protected function validateIdentical($input)
{
if (is_array($input)) {
return end($input) === $this->endValue;
}
return mb_strrpos($input, $this->endValue, 0, $enc = mb_detect_encoding($input))
=== mb_strlen($input, $enc) - mb_strlen($this->endValue, $enc);
}
}