非常に遅い API からデータを取得/処理するページをキャッシュしようとしています。そのため、ユーザーにすばやくロードできます。しかし、何らかの理由で出力バッファが空ですか?
<?php
ob_start();
// here I have php scripting accessing api's for information
?>
// Here I have HTML content with some php conditions and echos to filter and display the gathered information
// then I try to save the buffered page to the database:
<?php
//connect to database
$page = ob_get_contents();
mysql_query("UPDATE `pages` SET `page_cache` = '" . $page . "' WHERE `page_id` = '" . $page_id . "'");
?>
どんな助けでも大歓迎です!