1
0
cms11/app/Services/HtmlValidator.php

20 lines
405 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',
])->withBody($html, 'text/html')->post('http://nu-validator:8888/?out=json');
$json = $response->json();
return $json;
}
}