Php curl Scrapping没有得到所有的HTML内容

Php curl Scrapping not getting all html content from target link "https://www.woolworths.com.au/Shop/SearchProducts?search=Fresh%20Apple" So please help me for scrap whole content

My source code is:

function getSslPage($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_REFERER, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$result = curl_exec($ch);
curl_close($ch);
return $result;

}

$curl = getSslPage('https://www.woolworths.com.au/Shop/SearchProducts?search=Fresh%20Apple');

echo var_dump($curl);