PHP에서 파일을 가져오는 방법은 무엇인가요? PHP 가져오기 파일에는 include, require, include_once, require_once의 네 가지 문이 있습니다. PHP 가져오기 파일의 구체적인 예를 살펴보겠습니다.
기본 구문
require: require 함수는 일반적으로 다음 위치에 배치됩니다. PHP 스크립트 앞부분에서 PHP는 require에 지정된 가져온 파일을 실행하기 전에 읽고 가져온 스크립트 파일을 포함하고 실행을 시도합니다. require가 작동하는 방식은 PHP의 실행 효율성을 높이는 것입니다. 동일한 웹 페이지에서 한 번 해석된 후에는 두 번째로 해석되지 않습니다. 그러나 마찬가지로 가져온 파일을 반복적으로 해석하지 않기 때문에 PHP에서 파일을 삽입하기 위해 루프나 조건문을 사용할 때 include를 사용해야 합니다.
include: 은 PHP 스크립트의 어느 곳에나 배치할 수 있으며 일반적으로 프로세스 제어의 처리 부분에 있습니다. include로 지정된 파일에 PHP 스크립트가 실행되면 해당 파일이 포함되어 실행을 시도합니다. 이 방법을 사용하면 프로그램 실행 과정을 단순화할 수 있습니다. 동일한 파일을 두 번째로 만나면 PHP는 이를 다시 해석합니다. 동시에 사용자 정의 함수가 가져온 파일에 포함되는 경우에는 include의 실행 효율성이 훨씬 낮습니다. PHP는 해석 과정에서 반복되는 함수 정의 문제를 겪게 됩니다.
require_once / include_once: 은 각각 require / include와 동일한 기능을 가지고 있지만 차이점은 실행 시 대상 콘텐츠를 먼저 가져왔는지 확인한다는 점입니다. 한 번 가져온 경우 동일한 콘텐츠를 다시 가져올 수 없습니다.
DIFFERENCE
//test1.php <?php include './tsest.php'; echo 'this is test1'; ?> //test2.php <?php echo 'this is test2\n'; function test() { echo 'this is test\n'; } ?> //结果: this is test1
#결과 :#🎜🎜 ## ## ## ## ##### #####포함 및 include_once :#🎜🎜 ## 🎜🎜 ## 🎜🎜 # include로 로드된 파일은 중복 여부를 판단하지 않습니다. include 문이 있는 한, 반복 로드가 발생하더라도 한 번만 로드됩니다. include_once가 파일을 로드할 때 이전 코드가 로드되었는지 여부를 결정하는 내부 판단 메커니즘이 있습니다. 여기서 주목해야 할 점은 include_once는 파일의 내용(즉, 가져올 두 파일의 내용이 동일한 것)이 아닌 동일한 경로의 파일을 이전에 가져왔는지 여부를 기준으로 판단한다는 점입니다. , include_once를 사용하면 여전히 두 가지가 발생합니다).
//test1.php <?php require './tsest.php'; echo 'this is test1'; ?> //test2.php <?php echo 'this is test2\n'; function test() { echo 'this is test\n'; } ?>
include와 include_once의 차이점과 동일합니다.
2. include 문으로 설정된 파일에 코드를 로드하고
3을 실행해 보세요. mode , 다음 스크립트 프로그램 실행을 계속합니다//test1.php <?php include './test2.php'; echo 'this is test1'; include './test2.php'; ?> //test2.php <?php echo 'this is test2'; ?> //结果: this is test2this is test1this is test2 //test1.php <?php include './test2.php'; echo 'this is test1'; include_once './test2.php'; ?> //test2.php <?php echo 'this is test2'; ?> //结果: this is test2this is test1 //test1.php <?php include_once './test2.php'; echo 'this is test1'; include './test2.php'; ?> //test2.php <?php echo 'this is test2'; ?> //结果: this is test2this is test1this is test2 //test1.php <?php include_once './test2.php'; echo 'this is test1'; include_once './test2.php'; ?> //test2.php <?php echo 'this is test2'; ?> //结果: this is test2this is test1
상대 경로:
#🎜 🎜#현재 웹 페이지 파일의 위치를 기준으로 로드된 파일의 위치를 찾습니다.
//test1.php <html> <body> 主文件开始位置: <?php echo "<br> 主文件中位置 A"; include "./test2.php"; //要载入的文件 echo "<br> 主文件中位置 B"; ?> <br> 主文件结束位置 </body> </html> //test2.php <br> 被载入文件位置 1 <?php echo "<br> 被载入文件位置 2"; ?> <br> 被载入文件位置 3
절대 경로:
./ 表示表示当前位置,即当前网页文件所在的目录 . . / 表示上一级位置,即当前网页文件所在目录的上一级目录 //例如: include "./test2.php"; require "../../test3.html";
우리 모두는 절대 경로가 프로젝트의 이식성과 유지 관리에 도움이 되지 않는다는 것을 알고 있으므로 일반적으로 코드에 직접 절대 경로를 작성하는 경우는 없지만 필요한 경우 어떻게 해야 합니까? 절대 경로를 사용합니까? ? PHP에는 마법 상수 __DIR__ 및 전역 배열 $_SERVER가 있습니다. 사용법은 다음과 같습니다:
include "C:/PHP/test/test2.php";
需要注意:无论采用哪种路径,必须要加上文件后缀名,这四种文件载入方式不能识别无后缀的文件。
//test1.php include "./test2.php"; //结果:this is test2 //test1.php include "./test2"; //结果:
返回值的比较
上文说道include有返回值,而require无返回值
对于include,如果载入成功,有返回值,返回值为1;如果载入失败,则返回false.
对于require,如果载入成功,有返回值,返回值为1;如果载入失败,无返回值。
//test1.php <?php $a = include "./test2.php"; var_dump($a); echo "<br>"; $b = include "./test2.phps"; var_dump($b); echo "<br>"; $c = require "./test2.php"; var_dump($c); echo "<br>"; $d = require "./test2.phps"; var_dump($d); ?>
输出:
当被载入文件中有return语句时,会有另外的机制,此时return语句的作用是终止载入过程,即被载入文件中return语句的后续代码不再载入。return语句也可以用于被载入文件载入时返回一个数据。
//test1.php <?php $a = include "./test2.php"; echo "<br>"; var_dump($a); ?> //test2.php //该文件中有return语句 <?php $b = 'test2'; echo "被载入的文件:A 位置"; return $b; echo "<br 被载入的文件: B 位置"; ?>
结果:
相关推荐:
php 字符串写入文件或追加入文件(file_put_contents)
위 내용은 PHP로 파일을 가져오는 방법은 무엇입니까? PHP에서 파일을 도입하는 네 가지 방법 소개(코드)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!