This repository has been archived on 2025-01-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
luowei_exam/robot_251_1.php
2025-01-09 11:57:41 +08:00

5 lines
184 B
PHP

<?php
$content = file_get_contents("http://localhost:8022/goods/flash_sale.php");
$pattern = '/\d+(?=元)/';
preg_match_all($pattern, $content, $matches);
echo "[".$matches[0][0]."]";