| 1234567891011121314151617181920212223 |
- <?php
- return [
- // 抓取地址参数
- 'urls'=> [
- 'nike_cn'=> [
- 'name'=> '中国官网',
- 'url'=> 'http://www.nike.com/cn'
- // 'url'=> 'https://www.nike.com/cn/launch?s=upcoming'
- ],
- 'test'=> [
- 'name'=> '测试',
- 'url'=>'http://127.0.0.39/api/index/index'
- // 'url'=>'https://www.nike.com:443/launch?s=upcoming'
- // 'url'=>'https://www.nike.com/'
- ],
- 'nike_us'=> [
- 'name'=> '美国官网',
- 'url'=> 'https://www.nike.com/launch?s=upcoming'
- ],
- ],
- ];
|