亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

PHP ??

PHP include ? require ?

PHP??? ??? ??? ??? ? ????.

include ? require ?? ?? ??? ??? ??? ??? ?? ??? ???? ? ?????.

include? require? ?? ?? ??? ???? ?????.

require? ???? ??(E_COMPILE_ERROR)? ??? ? ???? ??? ?????.

include? ??(E_WARNING)? ???? ??? ??? ??? ????? ?? ?????.

??? ??? ??? ??? ?? ???? ??? ????? ????? include? ?????. ??? ?? ?? ?????, CMS ?? ??? PHP ?????? ???????? ?? require? ???? ?? ??? ?? ? ??? ?????. ?? ??? ??? ??? ??? ?? ?????? ??? ???? ????? ? ??? ???.

??? ???? ?? ??? ?????. ?? ?? ? ???? ?? ?? ???, ??? ?? ?? ??? ?? ? ??? ?????. ?? ?? ??? ?????? ? ? ?? ?? ??? ?????? ???.

??:

include '?? ??'; include('?? ??');

??

require 'file name'; require('file name');

?? ? ?? ????. ? ?? ??? ?? ??? ?? ??? ???? ????

?? ? ?? ? ??? ??? ?????. head.php ?? ??? ??? ????.

<?php
	echo 123;
?>

??? main.php ??? ?? ? ???? ???. ??? ??? ????

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>php中文網(wǎng)</title>
</head>
<body>
	<?php
		//include('head.php');      //使用include 包含
		//require('head.php');       //使用 require 包含
	?>
</body>
</html>

main.php ??? ???? 123? ?????. ??? ??? ???? ??? ?? ? ??? ???? ?????

???? ??
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)</title> </head> <body> <?php //include('head.php'); //require('head.php'); ?> </body> </html>