gpt4 book ai didi

php - 标准化 PHP + CSS 以不使用字符串解析

转载 作者:行者123 更新时间:2023-11-28 12:49:58 24 4
gpt4 key购买 nike

我为糟糕的标题道歉。给定以下代码:

<?php  

$css = 'foo-'.$data['style'];
$html= "<table><tr><td class='{$css}>styled! /> </tr> </table>;
?>

其中 [style] 返回值:'bar','baz','apple'

我怎样才能正确地剥离它并使其成为 html+css 标准而不是这种奇怪的 PHP 解析?

澄清“奇怪”:我无法在浏览器中将其作为标准 HTML 页面打开,这就是我想要做的。

最佳答案

<table><tr><td class='foo-<?= $data["style"] ?>' /> </tr>  </table>

<table><tr><td class='<?= "foo-".$data["style"] ?>' /> </tr>  </table>

你能做到

$style = "foo-".$data["style"];
?>
<table><tr><td class='<?= $style ?>' /> </tr> </table>

关于php - 标准化 PHP + CSS 以不使用字符串解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17067803/

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