В одном тексте (48) строк, в другом (41) ...
Как сделать чтобы при сравнение возвращало true ?
Библиотека
curl_query.php
<?
function curl_get($url,$referer = "https://www.google.com/"){
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_HEADER, 0);
curl_setopt($ch,CURLOPT_USERAGENT,"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36");
curl_setopt($ch,CURLOPT_REFERER,$referer);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
$data = curl_exec($ch);
curl_close($ch);
return $data;
};
index.php
$html = curl_get('https://filmix.ac/series/fantastiks/151905-30.9-loki-2021.html');
$dom = str_get_html($html);
$series = $dom->find('.added-info');
foreach($series as $seria){
$s = $seria->plaintext; //серия
$bd_text = '6 серия (2 сезон) - Iron Voice ';
var_dump($s,$bd_text);
};