3

我有一些来自数据库的内容。我想用一堆代码替换内容的特定单词。

来自数据库的内容例如:

感谢您对我们网站的关注。
{FORMINSERT}
您也可以拨打1234567890联系我们

我想{FORMINSERT}用一堆 PHP 代码替换字符串。如果它是一个普通的文本字符串,我可以简单地使用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">&nbsp;</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>
4

5 回答 5

2

ob_start()如果您想组合 HTML 和 PHP 代码并将输出保存在一个变量中,则可以使用:

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);

顺便说一句,这个函数也可以更通用地用于替换花括号之间的任何内容。

于 2012-12-16T12:54:08.153 回答
2

测试1.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';

结果:

感谢您对我们网站的关注。hello world 您也可以拨打1234567890联系我们

所以就好像代码“echo 'hello world';” 正坐在 {FORMINSERT} 所在的位置。您可以创建一堆 PHP 文件来包含这样的内容,并制作一些 if 语句来处理替换。

于 2012-12-16T13:00:54.240 回答
0

让我们假设来自您拥有的数据库的内容存储在$db_content您需要替换的变量和 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可以通过模板轻松完成此类工作的模式。这是我用于简单脚本的示例

于 2012-12-16T12:54:00.617 回答
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);

编辑>如果你想要你的表单中的 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);

编辑2

zou 可以完成的整个代码来了。

    <?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'>&nbsp;</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);
 ?>         
于 2012-12-16T13:02:40.000 回答
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") {

    }

}
于 2012-12-16T13:09:35.140 回答