gpt4 book ai didi

PHP 或 HTML 优先还是重要?

转载 作者:太空狗 更新时间:2023-10-29 15:22:35 30 4
gpt4 key购买 nike

我有一个可能很愚蠢的问题,但我还是会问的。

先进行 PHP 还是 HTML 代码重要吗?

例如:PHP 是在 HTML 之前,还是在 HTML 之后,还是根本没有关系?

<?php

echo "This is text";

?>


<html>
<head>
</head>
<body>
<center>
<font size="2">This is text</font>
</center>
</body>
</html>

或者:

<html>
<head>
</head>
<body>
<center>
<font size="2">This is text</font>
</center>
</body>
</html>

<?php

echo "This is text";

?>

或者:

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

<?php

echo "This is text";

?>

</body>
</html>

最佳答案

第三种是正确的方式(假设您希望文本在正文中回显)。

如上所示,PHP 可以跳入和跳出 HTML。

<html>
<head>
</head>
<body>
<center>
<font size="2"><?php echo "This is text"; ?></font>
</center>
</body>
</html>

关于PHP 或 HTML 优先还是重要?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10827545/

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