NOVINKA: Najžiadanejšie rekvalifikačné kurzy teraz s 50% zľavou + kurz AI ZADARMO. Nečakaj, táto ponuka dlho nevydrží! Zisti viac:

PHP - ob_get_contents

Trieda

Koreň \ Bez triedy

Metóda - ob_get_contents

(PHP 4, PHP 5, PHP 7)

The function gets the contents of the output buffer but doesn't clear the buffer.

Procedurálne

Parametre

Žiadne

Mávratovej hodnoty

Vracia: string

Returns the contents of the output buffer. Returns false if the buffer isn't active.

Príklady

<?php
ob_start();
echo "https://www.ict.social";
$link = ob_get_contents();
echo "/php/basics/introduction-to-php-and-web-applications";
$article = ob_get_contents();
ob_end_clean();

echo 'The homepage is ' . $link . ' and that article is at ' . $article;

Súvisiace manuály

        Aktivity