Aşağıdaki komut dosyası iki farklı platformlarda farklı davranır Herkes neden açıklayabilir misiniz?
Senaryo:
<?php
echo "hello!";
$view_content = ob_get_clean();
echo "'".gettype($view_content)."' >".$view_content."<";
(Loki 2i - php v5.3.0 - Windows 7 x64) Çıkış 1:
'string' >hello!<
Çıkış 2 (MAMP 1.9 on - php v5.3.2 - OSX 10.6.4):
hello!'boolean' ><
MAMP 'ob_get_clean ()' düzgün işlevini yerine değil gibi görünüyor. Ben de MAMP üzerinde php v5.2.13 denedim ve aynı sorunu gördüm.
I realize that these are different "versions" of php but i feel like this should work. Is there an extension/module I'm missing?