Reputation: 325
Hello guys I have one question ...
include()
Function if disabled?Function
you can not find a file that really exists?Thank you
Upvotes: 1
Views: 140
Reputation: 449843
I don't think so, no - include
is a language construct and as far as I know, can't be disabled.
Yes, if you don't have the proper rights to read the file.
You should probably add some more information about your specific situation to get more specific help.
Upvotes: 2
Reputation: 5182
Upvotes: 0
Reputation: 43850
include
is usually not disabled. You almost always need and include, and it is a good idea to use require
or require_once
if the file you want to use is required for your code to run
Upvotes: -1