I expect the output of "inside test finish" when loaded the index.php file instead I got nothing.
index.php:
<?php
@include_once('functions.php');
test();
echo "finish";
?>
inside the functions.php
there's a
<?php
function test()
{
echo "inside test";
}