Same as the usual *nix security rules for using ./
include("somefile.php");
will look through the current directory, and then any entries in your include paths as defined in php.ini
So, in theory, not using the ./ could cause confusion when you forget to put the intended file in your current directory, but it does appear in your include path.