5 lines
184 B
PHP
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]."]"; |