php学习笔记-include

Posted 早上吃什么

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php学习笔记-include相关的知识,希望对你有一定的参考价值。

这个和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的主要内容,如果未能解决你的问题,请参考以下文章