Supported Versions: PHP 4 >= 4.0.5, PHP 5, PHP 7, PHP 8
Finds whether a variable is a scalar
<?php is_scalar(mixed $value): bool
<?php     {

        $actualValue = $this->getValue($attribute);



        if (is_scalar($actualValue) || is_null($actualValue)) {

            $message = str_replace(':input', $this->getDisplayableValue($attribute, $actualValue), $message);

        }
<?php             return false;

        }



        if (! is_scalar($value) && ! method_exists($value, '__toString')) {

            return false;

        }