HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.111.1.lve.el8.x86_64 #1 SMP Fri Mar 13 13:42:17 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/subdomains/xibo/vendor/respect/validation/library/Rules/StartsWith.php
<?php
namespace Respect\Validation\Rules;

class StartsWith extends AbstractRule
{
    public $startValue;
    public $identical;

    public function __construct($startValue, $identical = false)
    {
        $this->startValue = $startValue;
        $this->identical = $identical;
    }

    public function validate($input)
    {
        if ($this->identical) {
            return $this->validateIdentical($input);
        }

        return $this->validateEquals($input);
    }

    protected function validateEquals($input)
    {
        if (is_array($input)) {
            return reset($input) == $this->startValue;
        }

        return 0 === mb_stripos($input, $this->startValue, 0, mb_detect_encoding($input));
    }

    protected function validateIdentical($input)
    {
        if (is_array($input)) {
            return reset($input) === $this->startValue;
        }

        return 0 === mb_strpos($input, $this->startValue, 0, mb_detect_encoding($input));
    }
}