2

HTML タグ内での PHP 変数の使用によく似たものを探していますか? 質問ですが、少し違います。

私の場合、コード鉱石を次のように使用したいと思います。

$somevar = 'a test';

include("file.html");

およびfile.htmlには次が含まれます

<b>hello, this is {$somevar}</b>

問題は、単に印刷されること hello, this is {$somevar}です。

インクルードされたファイルの vars を HTML に読み取らせるにはどうすればよいですか?

4

3 に答える 3

1
echo "<b>hello, this is {$somevar}</b>";

また

<b>hello, this is <?=$somevar?></b>

また

<b>hello, this is <?php echo $somevar; ?></b>

また

<b>hello, this is <?php print $somevar; ?></b>
于 2012-11-14T21:46:26.437 に答える
0

変数定義プログラムを、それにアクセスしたい他のプログラムに含める必要があります。例:

   Say test.html has $somevar.
   in file.html you do,

   <?php
   include('test.html');
    echo "<b>hello, this is $somevar</b>"; 
   ?>
于 2012-11-14T21:46:51.493 に答える
0
<?php
include "stuff.php";
$somevar = "test";
?>

<html>
    <body><p><?php echo($somevar); ?></p></body>
</html>
于 2012-11-14T21:49:10.767 に答える