6e899255c6
Instead of having a blacklist on name, how about we use a different file extension for included files? Many PHP installs do this for files that are in the document root but shouldn't be served. @override-unit-failures
12 linhas
135 B
PHP
12 linhas
135 B
PHP
<?php
|
|
|
|
print "Test begin\n";
|
|
|
|
function __autoload($cls) {
|
|
echo "__autoload $cls\n";
|
|
}
|
|
|
|
require "autoload4.inc";
|
|
|
|
print "Test end\n";
|