1 개요[ | ]
- PHP include
vars.php
PHP
Copy
<?php
$color = 'green';
$fruit = 'apple';
test.php
PHP
Copy
<?php
$color = '...';
$fruit = '...';
echo "A $color $fruit\n"; // A ... ...
include 'vars.php';
echo "A $color $fruit\n"; // A green apple
실행결과
Console
Copy
testuser@localhost:~$ php test.php
A ... ...
A green apple
2 같이 보기[ | ]
3 참고[ | ]
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.