In php.net, we know the only different between "require" and "include" is how PHP reacts when the file begin included isn't available.
But some articles show that it includes and evaluate file every time while using "include". And "require" includes and evaluate file only once.
Is that means "require" is more efficient than "include"? If so, is that apply to each PHP version?