Now, fast foward to PHP 5.3.2. Although the "require_once" calls do not fail (as long as the file is present - which it is), the functions with the "required_once" file are not visible to be used. I get "call to undefined function".
Example:
func.php
Code: Select all
<?
function do_something() {
echo "function from an external file";
}
?>Code: Select all
<?
require_once("func.php");
do_something();
?>Any help?