When using an include like so:
index.php:
<?php
echo "Begin Text:";
include 'file.php';
?>
file.php:
<?php
return;
echo "Text";
?>
"Text" is never printed. Is there a way to do the same with includes but with a function? (When using return with a function it returns from the function)