0

我有一个 html 代码,包括 javascript / php 代码。我想用它作为变量的值。像这样:

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

它将输出为 txt 文件。

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

4

2 回答 2

3

您可以将所有 HTML 代码放入一个单独的文件中并使用file_get_contents()

function abc($content){
     $content= file_get_contents( 'myHTMLcode.htm' );
     //  rest of code
}
于 2012-10-10T10:11:17.060 回答
0

你可以使用 phphtmlentities()htmlspecialchars()函数

$variable=htmlentities("data");
于 2012-10-10T10:08:43.887 回答