2011-07-21 53 views
0

這裏是我的代碼的一部分,將顯示圖像圖表(從這裏谷歌圖表示例http://code.google.com/apis/chart/image/docs/post_requests.html截取):通fpassthru內容到可變

$context = stream_context_create(
array('http' => array(
    'method' => 'POST', 
    'content' => http_build_query($chart)))); 
fpassthru(fopen($url, 'r', false, $context)); 

的問題是,而不是直接顯示圖像,我喜歡fpassthru的內容(基本上是圖像)傳遞給一個變量。也許像

$image = fpassthru(fopen($url, 'r', false, $context)); 

什麼想法?感謝

回答