PHP - ob_get_contents
Trieda
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
- function ob_get_contents () : string
Parametre
ŽiadneMá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;
