084-PHP文件引用include

02.php

<?php

$color = 'green';
$fruit = 'apple';

?>
01.php

<?php

echo "A $color $fruit"; // A

include '02.php';

echo "A $color $fruit"; // A green apple

?>

原文地址:https://www.cnblogs.com/tianpan2019/p/10999972.html