PHP | PHP Include - 다른 화일을 포함시키는 방법
페이지 정보
작성자 최고관리자 작성일16-08-09 20:06 조회5,443회 댓글0건관련링크
본문
1. 기본적인 방법
<?php include("header.php"); ?>
2. 중복 포함을 방지하는 방법
<?php include_once("header.php"); ?>
3. 도메인경로 기준으로 포함시키는 방법
<?php
$header = $_SERVER['DOCUMENT_ROOT'];
$header .= "/common/header.php";
include_once($header);
?>
추천 1 비추천 0
댓글목록
등록된 댓글이 없습니다.