私は他のPHPファイルのHTMLソースコードを表示する必要があります。 I持つ二つのファイルPHPコードをhtmlソースコードに変換するには?
code.php
index.phpを(私はHTMLソースコードにcode.phpを変換することができます願っています。)
code.php:
<!DOCTYPE html> <html> <body> <?php $color = "red"; echo $color; ?> </body> </html>
index.php(私はcode.phpをhtmlソースコードに変換したいと思います)
$php_to_html = file_get_contents("code.php");
$html_encoded = htmlentities($php_to_html);
echo $html_encoded;
しかしw鶏私はindex.phpファイルを実行し、その結果は
<!DOCTYPE html> <html> <body> <?php $color = "red"; echo $color; ?> </body> </html>
ですが、私は結果が
<!DOCTYPE html> <html> <body> red </body> </html>
私は、おかげでこれを行うことができますどのように任意のアイデアで見ることができることを望みます!あなたはHTMLその後htmlentities()
を使用していないとしてHTMLをレンダリングする場合
ob_start();
include("code.php");
$php_to_html = ob_get_clean();
$html_encoded = htmlentities($php_to_html);
echo $html_encoded;
:
'index.php'の中に' code.php'の出力を見たいのであれば、 'include'それだけではないのですか? – rackemup420
私はcode.phpのソースコードをhtmlのindex.phpの中に入れたいと思っています。 – francoleung