mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-04-18 02:13:11 +02:00
27 lines
455 B
PHP
27 lines
455 B
PHP
<?php
|
|
|
|
namespace Rakit\Validation\Rules;
|
|
|
|
use Rakit\Validation\Rule;
|
|
|
|
class Json extends Rule
|
|
{
|
|
|
|
protected $message = "The :attribute must be a valid JSON string";
|
|
|
|
public function check($value)
|
|
{
|
|
if (! is_string($value) || empty($value)) {
|
|
return false;
|
|
}
|
|
|
|
json_decode($value);
|
|
|
|
if (json_last_error() !== JSON_ERROR_NONE) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} |