PHP

内容 [#wf6f822e]

config.php [#naaad6a9]

 <?php
 $var = 'test';
 ?>

index.php [#dc87b31e]

 <?php
 require './config.php';
 echo $var;
 ?>