PHP ?? ?? ???? ???? ??? ?????.
1. ?? ?? ??
?? ????? ????? ?? ?? ??? ??? ??? ???? ?? ??? ?? ???, ? ??? ?? ? ??? ???? ???. ? ??? ??? ????? ????? ?? ?? ? ?? ??? ? ???? ?????. PHP?? ??? ???? require, require_once, include ? include-once? ? ?? ??? ????.
???? ??? ?????.
??:
1, ? ??_ ? ? ?????. ?? ??? ???? ? ? ?? ???? ???? ?????.
2. 4?? ??? ?? ??
??: ???? ???? ?? ??
?????? 1.php ??? ??? ? ?? ? ?? ??? ?????.
<?php //functions.php文件 function demo(){ echo 'aaaa'; } function test(){ echo 'cccdddd'; } ?>
? PHP ??? ??? ????? ??? ????. ? ?? 2 .php ???? 1.php ??? ???? ????. ?? ??? ? ??? 1.php? ????? ??? ? ????. ??? ??? ??? ? ???? ?????.
<?php include '1.php'; //可以直接調(diào)用 demo(); test(); ?>
?? ?? ?? ?? ??? ?? ????. ????, include? require? ?????.
????? ?? include? ???? ???? ?? test.php ??? ?????.
<?php include '1.php'; include 'test.php'; //可以直接調(diào)用 demo(); test(); ?>
? ?? ?? ??? ??? ????.
?? ?? require? ???? ???? ?? test.php ??? ?????.
?? ?? ???? ??? ??????.
test.php ??? ??? include? ??? ???? ??() ? test() ??? ?? ?????.
??? require? ?? ??? ????, ??()? test() ??? ?? ??? ? ????.
include? include_once? ???? ?? ?? ??? ???? ????. include_once? ????? ???? ?? ??? ? ?? ???? ???, include? ?? ?? ?? ?? ????. ??? ????? ??? ???? ?? ?????.
?? ??? 2.php? ??? ?????. ?? include? include_once? ???? function.php? ? ? ?????.
<?php include '1.php'; include '1.php'; //可以直接調(diào)用 demo(); test(); ?>
??:
include_once? ???? ?? ?????:
<?php include_once '1.php'; include_once '1.php'; //可以直接調(diào)用 demo(); test(); ?>
??:
? ??? ????? ?? ??? ???? ? ??? ????() .
?? ?? ??? ????? ??? ? ? ??? ? ???, ??? ??? ??? ?????. 3_1.php? ? ? ???? ??? ? ? ???? ?? ??? ???????.
include_once? ??? ???? ?? ??? function.php? ??? ?????? ? ?? ???? ???? ?? ???? ?????.
require? require_once? ??? ???? ?? ??? ??? ??? ? ???? require_once?? ? ?? ??? ????.
1. ??? ??? ???? ???. ??? ??? ??? ?????.
2. ?? ?? ??? ?????
??? ??:
include? require? ??? ?? ??? ????? ?? ?????. Require? ??? ??? ? ??? ??? ? ?? ???? ????.
inlcude? include_once? ???? ????? ????? ??? ???? ????. include_once? ????? ???? ?? ??? ? ?? ???? ???, include? ?? ?? ?? ?? ????.