class ParseSearchResults (View source)

The ParseSearchResults class is responsible for parsing search results from HTML and returning an array of fighter information.

It uses the Symfony DomCrawler to extract relevant information from the HTML structure.

Example usage: $html = file_get_contents('search_results.html'); $parser = new ParseSearchResults(); $results = $parser($html); // $results will contain an array of fighter information with names and IDs

Methods

array
__invoke(string $html)

Parse search results from HTML and return an array of fighter information.

Details

array __invoke(string $html)

Parse search results from HTML and return an array of fighter information.

Parameters

string $html

Return Value

array

An array of fighter information, each containing 'name' and 'id'.