//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
//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