PHP ?? ??
PHP??? ???? ???? ?? PHP ??? ?? ??? ??? ? ????.
include ? require ?? ?? ??? ??? ??? ??? ?? ??? ???? ? ?????.
include? require? ?? ?? ??? ???? ?????.
require? ???? ??(E_COMPILE_ERROR)? ???? ???? ??? ?????. ??? ??? ?.
include ? ??(E_WARNING)? ???? ??? ??? ??? ????? ?? ?????.
??? ??? ??? ??? ?? ???? ??? ????? ????? include? ?????. ??? ?? ?? ?????, CMS ?? ??? PHP ?????? ???????? ?? require
? ???? ?? ??(????? ?? ??? ? ??? ?? ???)? ?? ?? ??? ?????. ?? ??? ??? ??? ??? ?? ?????? ??? ???? ????? ? ??? ???.
??? ???? ?? ??? ?????. ?, ?? ???? ?? ?? ???, ??? ?? ?? ??? ?? ? ????. ?? ?? ??? ?????? ? ? ?? ?? ??? ?????? ???.
??
include "filename";
??
require "filename";
????
??? ?? header.php?? ??? ??? ?????
<?php header("Content-type:text/html;charset=utf-8"); //設(shè)置編碼 $name="PHP中文網(wǎng)"; $php="PHP"; ?>
include? ???? header.php? ?????. file
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>PHP中文網(wǎng)</title> </head> <body> <?php include "header.php"; echo "歡迎來到"."$name"."學(xué)習(xí)"."$php"; ?> </body> </html>
???? ?? ??:
PHP? ?? ? ?? PHP ??? ???? ?? ?? ?????
< "menu.php"?? ??? ?? ?? ??? ?? ????. <?php
header("Content-type:text/html;charset=utf-8"); //設(shè)置編碼
echo '<a href="/index.asp">首頁</a> -
<a href="/html/index.asp">HTML 教程</a> -
<a href="/css/index.asp">CSS 教程</a> -
<a href="/js/index.asp">JavaScript 教程</a> -
<a href="/php/index.asp">PHP 教程</a>';
?>
"menu.php" ??? ????? "require"? ?????. <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PHP中文網(wǎng)</title>
</head>
<body>
<h1>歡迎來到PHP中文網(wǎng)</h1>
<?php
require "header.php";
?>
</body>
</html>
???? ?? ??:
? ??? - HTML ???? - CSS ???? - JavaScript ???? - PHP ????
include VS require
include? require? ? ??? ????. ??? ???? ?? include ?? ???? PHP? ??? ?? ? ?? ?? ?????
?? ???????.
require ?? ???? ??? ??? ???? ?? ????? require ?? ??? ??? ??? ? ??? ??? ??? echo ?? ? ?? ???? ????. ??>
?
???? ?? ??? ????? include? ?????.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>PHP中文網(wǎng)</title> </head> <body> <h1>歡迎來到PHP中文網(wǎng)</h1> <?php include "noFile.php"; echo "我在學(xué)"."$name"; ?> </body> </html>???? ?? ??:
PHP ??? ????? ?? ?? ?????
??? ?
require? ???? non? ?????. -???? ??
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>PHP中文網(wǎng)</title> </head> <body> <h1>歡迎來到PHP中文網(wǎng)</h1> <?php require "noFile.php"; echo "我在學(xué)"."$name"; ?> </body> </html>???? ?? ??:
PHP ??? ????? ?? ?? ?????
?? : ???? ?? ??? ???? ?? include ? require? ???? ?? ?? ???? ??? ? ????. ?? php.ini
- ?? ??? ? ?? ?? ?????.
- php.ini ??
- Ctel+F ?? error_reporting
- error_reporting = E_ALL ??
- error_reporting = E_ALL? error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_WARNING
Apache ?? ??
??? ????. >