相关疑难解决方法(0)

HTML转换为PHP变量(PHP代码外的HTML)

我是php的新手,想知道我是否可以拥有这样的东西:

<?php
 ...
 magicFunctionStart();
?>

<html>
   <head>...</head>
   <body>...</body>
</html>

<?php
 $variable = magicFunctionEnd();
 ...
?>
Run Code Online (Sandbox Code Playgroud)

我现在要用的是

<?php
 ...
 $variable = "<html><head>...</head><body>...</body></html>"
?>
Run Code Online (Sandbox Code Playgroud)

这很烦人,不可读.

php output-buffering

25
推荐指数
2
解决办法
3万
查看次数

标签 统计

output-buffering ×1

php ×1