([^<]*)<\/a><\/li>/', $response, $matches); // Prepare the output for the readme file $output = ""; if (!empty($matches[1])) { foreach ($matches[1] as $href) { $output .= $href.PHP_EOL; } } else { $output = "No match found.\n"; } // Write the results to readme.txt file file_put_contents("README.md", $output); echo "Results saved to readme.txt"; } ?>