我希望能夠通過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: <?php echo $myvar; ?>
我希望變量$mystr
等於'The value of myvar is: This is a variable'
是否有任何其他的功能,將讓你在PHP中這樣做?
的[什麼是加載(與變量)多個文件的最好方法可能重複內容轉換爲字符串?](http://stackoverflow.com/questions/6905364/what-would-be-the-best-way-to-load-with-variables-multiple-files-content-into-a) – Phil