file_get_contents()
でファイルにいくつかの変数を送信したいと考えています。PHPが変数をfile_get_contents()に送信する
これはfirstfile.phpです:
<?php
$myvar = 'This is a variable';
// need to send $myvar into secondfile.php
$mystr = file_get_contents('secondfile.php');
?>
これはsecondfile.phpです:私は'The value of myvar is: This is a variable'
に等しくなるように変数$mystr
をしたい
The value of myvar is: <?php echo $myvar; ?>
ができるようになる他の機能がありますあなたはPHPでこれを行う?
可能重複文字列にコンテンツ?](http://stackoverflow.com/questions/6905364/what-would-be-the-best-way-to-load-with-variables-multiple-files-content-into-a) – Phil