私はphpが初めてです。
私は得る
致命的なエラー: 非オブジェクト エラーでのメンバー関数 find() の呼び出し、
私は simple_html_dom.php を含めました
<?php
include 'simple_html_dom.php';
$htm = file_get_html('http://www.thatscricket.com');
$es = $htm->find('div[class=score_card_display_below_links]');
$value = $es[0]->href;
$link = "http://www.thatscricket.com/$value";
$html = file_get_html('$link');
$scr = $html->find('span');
echo "$scr";
?>