Heim >Backend-Entwicklung >PHP-Tutorial >php require函数有什么用

php require函数有什么用

PHPz
PHPzOriginal
2016-06-06 20:09:102633Durchsuche

php require函数用于引入或者包含外部php文件,可以在执行流中插入写在其他文件中的有用的代码;当包含的外部文件发生错误时,系统将抛出错误提示,并且停止php文件的执行。

php require函数有什么用

php require函数有什么用?

require()是php的内置函数,作用是引入或者包含外部php文件,用于在执行流中插入写在其他文件中的有用的代码。

  工作原理:当本身php文件被执行时,则外部文件的内容就将被包含进该自身php文件中;当包含的外部文件发生错误时,系统将抛出错误提示,并且停止php文件的执行。

  注意:使用require时,一个文件存在错误的话,那么程序就会中断执行了,并显示致命错误 。

  比如cl.php,ts.php两个文件,ts.php要用到cl.php文件中的函数,需要在ts.php中引入或者包含cl.php即可.示例如下:

cl.php

<?php
function  show(){
    echo "cl.php文件中的show方法被调用了!";
     
}
?>

ts.php

<?php
require &#39;cl.php&#39;;
show();
?>

运行结果:

8404b87b069498571171d465e02d697.png

更多相关知识,请访问PHP中文网

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn