https://github.com/mathsgod/html-content-extractor
https://github.com/mathsgod/html-content-extractor
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mathsgod/html-content-extractor
- Owner: mathsgod
- License: mit
- Created: 2024-07-16T05:15:28.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-17T08:31:23.000Z (almost 2 years ago)
- Last Synced: 2025-12-26T11:44:37.519Z (6 months ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HTML Content Extractor
## Description
This is a simple tool to extract the content of a HTML file into string format.
## Usage
```php
$html= "
Hello World
";
echo Html\Extractor::Extract($html);
```