This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "timestamp_start": "2026-05-12T16:46:59", | |
| "timestamp_end": "2026-05-12T16:47:54", | |
| "duration_seconds": 54.2, | |
| "matches": { | |
| "5498464_2217702": { | |
| "fixture_id": 5498464, | |
| "market_id": "2217702", | |
| "fixture_name": "Jan Choinski VS Juan Pablo Ficovich", | |
| "oddsportal_match_url": "/tennis/h2h/augusto-loureiro-SEAHRANJ/bini-scramin-GOcY2qv8/#KnqA7spS", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Adds sticky posts to your category archive | |
| * pages. | |
| * | |
| * Works in exactly the same way as sticky posts work | |
| * on the homepage, including all the negatives like | |
| * breaking the posts_per_page and only showing | |
| * them on page 1 etc. | |
| * | |
| * @param array $posts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public function replaceNbspWithSpace($text) { | |
| $string = htmlentities($text, ENT_QUOTES, 'utf-8'); | |
| $text = str_replace(" ", " ", $string); | |
| $text = html_entity_decode($text); | |
| return $text; | |
| } |