1
0
cms11/app/Services/HtmlValidator.php

20 lines
410 B
PHP
Raw Normal View History

2024-05-09 01:11:05 +02:00
<?php
namespace App\Services;
use Illuminate\Support\Facades\Http;
class HtmlValidator
{
public static function validateSource(string $html)
{
$response = Http::withHeaders([
'Content-Type' => 'text/html; charset=utf-8',
2024-05-09 01:15:16 +02:00
])->withBody($html, 'text/html')->post(env('HTML5_VALIDATOR_URL') . '/?out=json');
2024-05-09 01:11:05 +02:00
$json = $response->json();
return $json;
}
}