gpt4 book ai didi

PHP - 可以将一长串 HTML 包装在 PHP 变量中吗?

转载 作者:行者123 更新时间:2023-12-03 22:45:46 25 4
gpt4 key购买 nike

这可以做到吗——用一个 PHP 标签打开一个变量,然后关闭 PHP 标签但保持变量打开,这样下面的所有内容都成为变量的值?或者 PHP 变量大小/字符有限制吗?

<?php $content = " ?>

a bunch of content goes here <br />
with lots of HTML tags and JS scripts

<?php "; ?>

最佳答案

您可以使用 HEREDOC/NOWDOC

$content = <<< 'HTML'

a bunch of content goes here <br />
with lots of HTML tags and JS scripts

HTML;

output buffering ,例如
<?php ob_start(); ?>

foo

<?php
$var = ob_get_clean();
var_dump($var); // will contain foo and surrounding whitespace

关于PHP - 可以将一长串 HTML 包装在 PHP 变量中吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3726704/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com