gpt4 book ai didi

php - 如何在 html 中包含 php if 条件

转载 作者:行者123 更新时间:2023-11-27 23:42:13 27 4
gpt4 key购买 nike

我已经编写了一个 php 代码,使用 mpdf API 将 html 内容转换为 pdf,现在我想在该 html 内容中包含一个 php if 条件,我该怎么做?这是我的代码:

$cart_body='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>New Order Placed</title>
</head>
<body>
<table width="550" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="400" align="left" valign="top">
<a style="font-size:16px">' if(somecondition){ echo "somecontent"; }
else{
echo "somecontent";
}'</a><br />
</body>
</html>';

最佳答案

您可以使用 . 运算符进行连接,请参见下面的示例:

$cart_body='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>New Order Placed</title>
</head>
<body>
<table width="550" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="400" align="left" valign="top">
<a style="font-size:16px">';
if(somecondition){ $cart_body .= "somecontent"; }
else{
$cart_body .= "somecontent";
}

$cart_body .= '</a><br />
</body>
</html>';

关于php - 如何在 html 中包含 php if 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31285876/

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