gpt4 book ai didi

php - 如何把php+html写在一个文件里更漂亮?

转载 作者:太空狗 更新时间:2023-10-29 13:54:13 25 4
gpt4 key购买 nike

<?
if($id == 2) {
?>
html goes here
<?
}
else {
?>
if id is not 2 then something goes here
<?
}
?>

不学聪明怎么把php+html写在一个文件里更漂亮?

最佳答案

您可以使用 PHP's alternative syntax for control structures :

<? if ($id == 2): ?>
<h2>some html</h2>
<? else: ?>
<h2>another html chunk</h2>
<? endif ?>

请注意 short_open_tags是一个需要显式启用的 php.ini 指令,否则你将不得不编写 <?php每次。

关于php - 如何把php+html写在一个文件里更漂亮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2795847/

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