<?php

header
('Content-type: text/plain');

set_include_path('.:/usr/pkg/lib/php');

printf("PHP-Version       : %s\n",  phpversion());
printf("include_path      : %s\n",  get_include_path());
printf("Arbeitsverzeichnis: %s\n\n"getcwd());

$v 0;

include(
'inctest.inc.php');
printf("inc. 1: %s\n"$v === 'true' 'false');

$v 0;

include(
'./inctest.inc.php');
printf("inc. 2: %s\n"$v === 'true' 'false');

?>