function pub_alimama($key) {
$url="https://pub.alimama.com/items/search.json?q=".$key."&toPage=1&dpyhq=1&perPageSize=40&shopTag=yxjh=-1%2Cdpyhq";
$ajax = Network::Create();
$ajax->open(GET, $url);
$ajax->enableGzip();
$ajax->setTimeOuts(60, 60, 0, 0);
$ajax->send();
return json_decode($ajax->responseText);
}