Querylist collects the Oriental Fortune stock list page, with a total of more than 3600 a tags, and the result can only get more than 2700.

problem description

http://quote.eastmoney.com/st.

after all the a tags on this page are collected, there should be more than 3600, but the result is only more than 2700. It feels like bug
.

related codes

<?php
require "vendor/autoload.php";
use QL\QueryList;
$data = QueryList::get("http://quote.eastmoney.com/stocklist.html")->find("a")->texts();
print_r($data->all());
parse where the a tag is broken [3227] = > Yi Shang shows (002751), the result is as follows:
Array
(
    
   
    [3218] => (002741)
    [3219] => (002742)
    [3220] => (002743)
    [3221] => (002745)
    [3222] => (002746)
    [3223] => (002747)
    [3224] => (002748)
    [3225] => (002749)
    [3226] => (002750)
    [3227] => (002751)
    [3228] => 
)
Php
Dec.09,2021
Menu