# Copyright (c) 2010 Ming Tsay. All rights reserved.
# If you have any problem or advice, you can send a mail to me.
private function download($url){
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$content = curl_exec($ch);