Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
23 lines
562 B
PHP
23 lines
562 B
PHP
<?php
|
|
|
|
namespace Sunra\PhpSimple;
|
|
|
|
require 'simplehtmldom_1_5'.DIRECTORY_SEPARATOR.'simple_html_dom.php';
|
|
|
|
class HtmlDomParser {
|
|
|
|
/**
|
|
* @return \simplehtmldom_1_5\simple_html_dom
|
|
*/
|
|
static public function file_get_html() {
|
|
return call_user_func_array ( '\simplehtmldom_1_5\file_get_html' , func_get_args() );
|
|
}
|
|
|
|
/**
|
|
* get html dom from string
|
|
* @return \simplehtmldom_1_5\simple_html_dom
|
|
*/
|
|
static public function str_get_html() {
|
|
return call_user_func_array ( '\simplehtmldom_1_5\str_get_html' , func_get_args() );
|
|
}
|
|
} |