http://www.php.net/manual/en/ref.filesystem.php#ini.allow-url-fopen
Basically, if enabled, you can use certain file-related functions to access files via URL:
$text = file_get_contents('http://www.example.com/file.html');
If it is turned off, then those functions can only access files via the local file system.