1. Go to this page and download the library: Download ordinary9843/html-master library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ordinary9843 / html-master example snippets
Ordinary9843\HtmlMaster;
$htmlMaster = new HtmlMaster();
// For the first time use of this package, it is recommended to enable the debug mode.
$htmlMaster->setDebug(true);
// Set the browser path for dynamic mode.
$htmlMaster->setExecutablePath('/usr/bin/chromium');
/**
* Set the connection time (in seconds) for dynamic mode.
*
* If you are unable to obtain the dynamic (SPA) HTML.
* You can try extending the wait time in seconds to wait for the website JavaScript elements to finish rendering.
*/
$htmlMaster->setWaitSeconds(5);
// Set the connection time (in seconds) for static mode.
$htmlMaster->setConnectTimeout(5);
$htmlMaster->setTimeout(5);
/**
* The decision to execute the crawler in static or dynamic mode depends on whether your browser path is correctly set.
* Please use `setExecutablePath()` to set the browser path.
*
* Output: [
* 'title' => '',
* 'description' => '',
* 'meta' => [
* 'keywords' => '',
* 'description' => '',
* 'viewport' => '',
* 'author' => '',
* 'copyright' => '',
* 'robots' => '',
* 'og' => [],
* 'twitter' => []
* ],
* 'icons' => [],
* 'images' => [],
* 'css' => [],
* 'js' => []
* ]
*/
$htmlMaster->parse('https://github.com/ordinary9843');
/**
* Get all messages.
*
* Output: [
* '[INFO] Message.',
* '[ERROR] Message.'
* ]
*/
$htmlMaster->getMessages();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.