我有一个 html 代码,包括 javascript / php 代码。我想用它作为变量的值。像这样:
function abc($content){
$content='my html code ';
// rest of code
}
它将输出为 txt 文件。
但出于这个原因,我的脚本会更大。有没有办法将该 html 代码提交到任何站点并在变量中放置一个链接以从该源获取脚本?
您可以将所有 HTML 代码放入一个单独的文件中并使用file_get_contents()
function abc($content){
$content= file_get_contents( 'myHTMLcode.htm' );
// rest of code
}
你可以使用 phphtmlentities()
或htmlspecialchars()
函数
$variable=htmlentities("data");