An open API service indexing awesome lists of open source software.

https://github.com/mathsgod/html-content-extractor


https://github.com/mathsgod/html-content-extractor

Last synced: 3 months ago
JSON representation

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);

```