5 lines
187 B
PHP
5 lines
187 B
PHP
<?php
|
|
$content = file_get_contents("http://125.64.9.222:8022/goods/flash_sale.php");
|
|
$pattern = '/\d+(?=元)/';
|
|
preg_match_all($pattern, $content, $matches);
|
|
echo "[".$matches[0][1]."]"; |