It's because you url uses googles new client side side functionality. Everything after the #
is for the client, and the server will serve you the content under http://www.google.co.il/
.
update
If you want to use google search results in your program, try using one of their API for custom search. There have been a search webservice for ajax clients under the this url:
http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=your+term+goes+here
It returns results in JSON, the first result is under responseData->results
array:
$search_results = json_decode(file_get_contents('http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=your+term+goes+here'), true);
var_export($search_results['responseData']['results'][0]);
But i think this have been deprecated since than (still responds however).
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…