Rozumiem. Lecz teraz rodzi się pytanie czy istnieje na to jakiś sposób, (tj. cały mój system polega na tym że działa on tak obstart -> ob_get_content -> ob_end_clean, obstart -> ob_get_content -> ob_end_clean, itd. a na końcu wyświetlanie tego co pobrałem wcześniej przez ob_get_content).
Pomyślałem o czymś takim:
Kod
ob_start("ob_gzhandler");
echo '1';
define("COS1", ob_get_clean());
echo '2';
define("COS2", ob_get_clean());
echo COS1;
ob_end_clean();
Ale to również nie działa.