PHP include

Jmnote (토론 | 기여)님의 2021년 8월 23일 (월) 23:09 판

1 개요

PHP include
vars.php
<?php
$color = 'green';
$fruit = 'apple';
test.php
<?php
$color = '...';
$fruit = '...';
echo "A $color $fruit\n"; // A ... ...
include 'vars.php';
echo "A $color $fruit\n"; // A green apple
실행결과
testuser@localhost:~$ php test.php
A ... ...
A green apple

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}