This section provides a tutorial example showing you how to the require() function is better than the do() function - if the same file is included multiple time, the require() function will only execute it once.
As mentioned in the previous section, require() function can be used to include script code
from another file into the current script file.
To try this out, I wrote another include file, MyRequireLib.inc,
#- MyRequireLib.inc
#- Copyright (c) 1995 by Dr. Herong Yang, http://www.herongyang.com/
#
$author = "Dr. Herong Yang";
print("Printing from MyRequireLib.inc...\n");
sub myRequireSub {
print("Printing from myRequireSub()...\n");
}
1;
Here is tutorial script that tests the difference between the do() function and the require() function:
The output matches my expectation. The second require() call didn't do any execution.
Testing require()...
Printing from MyRequireLib.inc...
Author = Dr. Herong Yang, http://www.herongyang.com/
Printing from myRequireSub()...
Testing do()...
Printing from MyDoLib.inc...
Printing from MyDoLib.inc...
Author = Herong Yang
Printing from myDoSub()...