是否可以将html或php代码作为变量值?

时间:2012-10-10 10:07:33

标签: php variables

我有一个包含javascript / php代码的HTML代码。 我想用它来变量的值。 像这样:

function abc($content){
     $content='my html code ';
     //  rest of code
}

它将输出为txt文件。

但是由于这个原因,我的脚本会变得更大。有没有办法将html代码提交到任何网站,并在变量中放置一个链接以从该源获取脚本?

2 个答案:

答案 0 :(得分:3)

您可以将所有HTML代码放入单独的文件中,然后使用file_get_contents()

加载它
function abc($content){
     $content= file_get_contents( 'myHTMLcode.htm' );
     //  rest of code
}

答案 1 :(得分:0)

您可以使用php htmlentities()htmlspecialchars()功能

$variable=htmlentities("data");