From a4a7473abb8d860acefc98bf1700321a8250ca83 Mon Sep 17 00:00:00 2001 From: Paul Prechtel Date: Wed, 19 Apr 2023 17:51:55 +0200 Subject: [PATCH] [Docs] Fix link to SimpleHTMLDOM documentation (#3354) --- docs/06_Helper_functions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/06_Helper_functions/index.md b/docs/06_Helper_functions/index.md index a2568848..817241dd 100644 --- a/docs/06_Helper_functions/index.md +++ b/docs/06_Helper_functions/index.md @@ -53,7 +53,7 @@ $html = getContents($url, $header, $opts); ``` # getSimpleHTMLDOM -The `getSimpleHTMLDOM` function is a wrapper for the [simple_html_dom](http://simplehtmldom.sourceforge.net/) [file_get_html](http://simplehtmldom.sourceforge.net/manual_api.htm#api) function in order to provide context by design. +The `getSimpleHTMLDOM` function is a wrapper for the [simple_html_dom](https://simplehtmldom.sourceforge.io/) [file_get_html](https://simplehtmldom.sourceforge.io/docs/1.9/api/file_get_html/) function in order to provide context by design. ```PHP $html = getSimpleHTMLDOM('your URI');