<table>
<?php
$sourceURL="https://animepahe.ru/play/09622f13-70b2-c605-4ee7-62fdc3068671/";
$content=file_get_contents($sourceURL);
$content = strip_tags($content,"<a>");
$subString = preg_split("/<\/a>/",$content);
$links = [];
foreach ( $subString as $val ){
if( strpos($val, "<a href=") !== FALSE ){
$val = preg_replace("/.*<a\s+href=\"/sm","[URL="https://animepahe.ru"]cloud anime encoding[/URL]",$val);
$val = preg_replace("/\".*/","",$val);
if (strpos($val, "play") !== false && !in_array($val, $links)) {
$links[] = $val;
print '<tr><td>'.$val."\n";
}
}
}
// Move the first element to the last element
if (count($links) > 1) {
$firstElement = array_shift($links);
$links[] = $firstElement;
}
?>
</table>