include して変数に入れて使う
■a.php
$text = “テキスト”;
■b.php
ob_start();
include(a.php”);
ob_clean();
echo $text;
また同一ページなどで、
ob_start();
include_once(‘title.html’);
$PAGE_TITLE = ob_get_contents();
ob_end_clean();
echo $PAGE_TITLE
■a.php
$text = “テキスト”;
■b.php
ob_start();
include(a.php”);
ob_clean();
echo $text;
また同一ページなどで、
ob_start();
include_once(‘title.html’);
$PAGE_TITLE = ob_get_contents();
ob_end_clean();
echo $PAGE_TITLE
Comment