我有一些来自数据库的内容。我想用一堆代码替换内容的特定单词。
来自数据库的内容例如:
感谢您关注我们的网站。
{} FORMINSERT
您可以 也请致电1234567890与我们联系
我想用一堆PHP代码替换字符串{FORMINSERT}
。如果它是普通文本字符串,我只需使用str_replace
替换它。
但替换内容不是简单的文本,而是表单代码。
想要替换此{FORMINSERT}
以示例:
<form method="post" id="form1" action="<?php echo KT_escapeAttribute(KT_getFullUri()); ?>">
<table cellpadding="5" cellspacing="2" >
<tr>
<td width="84" ><a name="contact" id="contact"></a></td>
<td width="384"> </td>
</tr>
<tr>
<td colspan="2" ><h1>Contact Us</h1></td>
</tr>
<tr>
<td ><label for="fullname">Name:</label></td>
<td>
<input type="text" name="fullname" id="fullname" value="<?php echo KT_escapeAttribute($row_rsscotts_contact['fullname']); ?>" size="47" />
<?php echo $tNGs->displayFieldHint("fullname");?> <?php echo $tNGs->displayFieldError("scotts_contact", "fullname"); ?>
</td>
</tr>
<tr>
<td ><label for="phone">Phone:</label></td>
<td>
<input type="text" name="phone" id="phone" value="<?php echo KT_escapeAttribute($row_rsscotts_contact['phone']); ?>" size="47" />
<?php echo $tNGs->displayFieldHint("phone");?> <?php echo $tNGs->displayFieldError("scotts_contact", "phone"); ?>
</td>
</tr>
<tr>
<td><label for="email">Email:</label></td>
<td>
<input type="text" name="email" id="email" value="<?php echo KT_escapeAttribute($row_rsscotts_contact['email']); ?>" size="47" />
<?php //echo $tNGs->displayFieldHint("email");?> <?php echo $tNGs->displayFieldError("scotts_contact", "email"); ?>
</td>
</tr>
<tr>
<td><label for="tellus">Looking for:</label></td>
<td>
<textarea name="tellus" id="tellus" cols="37" rows="5"><?php echo KT_escapeAttribute($row_rsscotts_contact['tellus']); ?></textarea>
<?php echo $tNGs->displayFieldHint("tellus");?> <?php echo $tNGs->displayFieldError("scotts_contact", "tellus"); ?>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="KT_Insert1" id="KT_Insert1" value="Submit" class="button-blue" />
<input name="Reset" type="reset" value="Reset" class="button-grey" />
</td>
</tr>
</table>
</form>
答案 0 :(得分:2)
如果您希望将HTML和PHP代码组合在一起并将输出保存在一个变量中,则可以使用ob_start()
:
ob_start();
?>
<form action="contact.php" method="post">
Few fields here
and submit button
</form>
<?php
$forminsert = ob_get_clean();
然后,您可以按正常方式执行str_replace()
。
但是,如果{FORMINSERT}
可能显示或未显示,则可以使用preg_replace_callback()
来降低生成表单数据的成本,如果不需要它:
$content = preg_replace_callback('/{(.*?)}/', function($match) {
if ($match[1] == 'FORMINSERT') {
// code to generate $forminsert
return $forminsert;
}
return $match[0];
}, $content_from_db);
顺便说一下,这个函数也可以更通用地用于替换花括号之间的任何东西。
答案 1 :(得分:2)
test1.php:
$database_content = 'Thank you for interest on our web site.
{FORMINSERT}
You can also contact us by calling us to 1234567890';
if(stripos($database_content, '{FORMINSERT}') !== FALSE){
ob_start();
include 'test2.php';
$result = ob_get_clean();
}
$database_content = str_replace("{FORMINSERT}", $result, $database_content);
echo $database_content;
test2.php(您尝试插入的代码):
echo 'hello world';
结果:
感谢您关注我们的网站。你好世界你也可以 联系我们致电1234567890
所以就好像代码“echo'hello world';”坐在{FORMINSERT}所在的地方。您可以创建一堆PHP文件来包含这样的内容,并创建一些if语句来处理替换。
答案 2 :(得分:0)
让我们假设您拥有的数据库中存储的内容存储在变量$db_content
&amp;您需要替换的PHP代码位于custom_code.php
所以
if(strpos($db_content, "{FORMINSERT}") === true){
//remove the tag
str_replace("{FORMINSERT}", '',$db_content)
//load the php code
require_once("custom_code.php")
}
//if need, you can add more conditions using else-if & replace more tags.
但最好转向MVC
模式,您可以通过模板轻松完成此类工作。这是我用于简单脚本的example
答案 3 :(得分:0)
这样做,你的工作就解决了
$forminser= " welcome to our website {FORMINSERT}";
$form= "<form action='contact.php' method='post'>
Few fields here
and submit button
</form>" ;
echo str_replace("{FORMINSERT}",$form,$forminser);
编辑&gt; 如果你想在你的表单中的PHP代码,那么这里是一个例子
$var = "Few words here" ;
$forminser= " welcome to our website {FORMINSERT}";
$form= "<form action='contact.php' method='post'>";
$form .= $var ; // this php code here
$form .= " and submit button</form>" ;
echo str_replace("{FORMINSERT}",$form,$forminser);
edit2
这里有完整的代码,你可以做到。
<?php
$forminser= " welcome to our website {FORMINSERT}";
$form = "<form method='post' id='form1' action=' " ;
$form .= KT_escapeAttribute(KT_getFullUri());
$form .= " '><table cellpadding='5' cellspacing='2' >
<tr>
<td width='84' ><a name='contact' id='contact'></a></td>
<td width='384'> </td>
</tr>
<tr>
<td colspan='2' ><h1>Contact Us</h1></td>
</tr>
<tr>
<td ><label for='fullname'>Name:</label></td>
<td><input type='text' name='fullname' id='fullname' value=' " ;
$form .= KT_escapeAttribute($row_rsscotts_contact['fullname']);
$form .= " ' size='47' /> ";
$form .= $tNGs->displayFieldHint("fullname");
$form .= $tNGs->displayFieldError("scotts_contact", "fullname");
$form .= "</td>
</tr>
<tr>
<td ><label for='phone'>Phone:</label></td>
<td><input type='text' name='phone' id='phone' value= ' " ;
$form .= KT_escapeAttribute($row_rsscotts_contact['phone']);
$form .= " ' size='47' /> ";
$form .= $tNGs->displayFieldHint("phone");
$form .= $tNGs->displayFieldError("scotts_contact", "phone");
$form .= '</td>
</tr>
<tr>
<td><label for="email">Email:</label></td>
<td><input type="text" name="email" id="email" value=" ' ;
$form .= KT_escapeAttribute($row_rsscotts_contact['email']);
$form .= '" size="47" />';
$form .= $tNGs->displayFieldError("scotts_contact", "email");
$form .= '</td>
</tr>
<tr>
<td><label for="tellus">Looking for:</label></td>
<td><textarea name="tellus" id="tellus" cols="37" rows="5"> ';
$form .= KT_escapeAttribute($row_rsscotts_contact['tellus']);
$form .= '</textarea> ';
$form .= $tNGs->displayFieldHint("tellus");
$form .= $tNGs->displayFieldError("scotts_contact", "tellus");
$form .= '</td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="KT_Insert1" id="KT_Insert1" value="Submit" class="button-blue" /> <input name="Reset" type="reset" value="Reset" class="button-grey" /></td>
</tr>
</table>
</form>
';
echo str_replace("{FORMINSERT}",$form,$forminser);
?>
答案 4 :(得分:0)
好的,这个怎么样。下面的代码允许您在内容中定义自定义{words},并在解析时将其替换为其他内容。
$contentFromDB = "Etiam porta sem malesuada magna mollis euismod. Donec ullamcorper nulla non metus auctor fringilla. {FORMINSERT}";
echo matchTags($contentFromDB);
function matchTags($content) {
$pattern = '/{(\w+)}/i';
$content = preg_replace_callback($pattern,"transformTags",$content);
return $content;
}
function transformTags($word) {
if ($word[1] == "FORMINSERT") {
ob_start();
?>
<form action="contact.php" method="post">
Few fields here
and submit button
</form>
<?php
$content = ob_get_clean();
return $content;
}
if ($word[1] == "somethingelse") {
}
}