Skip to content

Instantly share code, notes, and snippets.

View MrCheatEugene's full-sized avatar

Emil MrCheatEugene

View GitHub Profile
@MrCheatEugene
MrCheatEugene / ReshDl.php
Last active April 2, 2022 08:29
Парсер видео с РЭШ на PHP - Resh video parser written in PHP
<?php
// Парсер видео с resh.edu.ru на PHP.
// Нужен DOMDocument а также ссылка на основную часть с плеером player.js. Пример: https://resh.edu.ru/subject/lesson/6111/main/200549/
// $lnk - ссылка на основную часть
function get_widget($lnk){
libxml_use_internal_errors(true);
if (empty($lnk) == true) {
return false;
}else{
$html = new DOMDocument();