1. 程式人生 > >php學習筆記-include

php學習筆記-include

插入 學習筆記 div 一個 http 語言 alt com 結果

這個和C語言中的include是同樣的用法,如果一個php文件中有一句include a.php,那麽執行的時候就會把a.php的內容插入到這個php文件中。

舉個例子,我現在有一個名為helloworld.php的文件,它的內容如下:

<?php

echo ‘hello world!‘;

?>

我還有一個名為new.php的文件,它的內容如下:

<?php

include ‘helloworld.php‘;

echo ‘i am the page of new.php‘;
?>

執行結果如下:

技術分享圖片

php學習筆記-include