include_once()php apiを使用して、ファイル(myfile.php)の内容を別の(index.php)にロードしようとしています。ただし、コンテンツは読み込まれていません。
// contents inside index page
if(include_once('myfile.php')){
echo D; // this is working
echo $b; // this is not working
} else {
echo "unable to include the file";
}
// contents inside myfile.php
define('D', '123');
$b = "abcd";