0

我的客户希望能够将 PayPal 添加到购物车按钮放置在页面上的任何位置,并且可能在单个页面上有多个按钮。他将使用 [price MONKEY] 之类的短代码让 PaylPal 按钮替换该文本,并使用“monkey”的价格和描述。

因此,每次我们在页面上找到 [price] 短代码时,我都需要查询数据库以获取价值,然后将其插入到以下 PayPal 按钮代码中,并在页面上的该位置显示按钮。然后移动到下一个替换,如果有的话。

这是 PayPal 按钮代码:

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" value="_cart" name="cmd" /> 
<input type="hidden" value="me@mydomain.com" name="business" /> 
<input type="hidden" value="1" name="add" /> 
<input type="hidden" value="MONKEY" name="item_name" /> 
<input type="hidden" value="" name="item_number" /> 
<input type="hidden" value="17.00" name="amount" /> 
<input type="hidden" value="2" name="no_shipping" /> 
<input type="hidden" value="USD" name="currency_code" /> 
<input border="0" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/x-click-but22.gif" alt="Make payments with PayPal - it's fast, free and secure!" />
</form>

我一直在尝试使用 preg_replace_callback() 函数来执行此操作,但是在插入按钮的所有 HTML 时遇到问题,然后在页面上查找更多短代码实例并替换它们。

感谢您对此的任何帮助!它在 Wordpress 中非常简单,所有这些代码都已经编写好了(但是在哪里?)——这是我从头开始创建的一个应用程序,现在需要一些改进。谢谢!

这是我的正则表达式:

 $pattern = '/\[price (.*?)\]/';
4

1 回答 1

0

您可以使用您的模式使用基本的 preg_replace 来完成此任务。像这样:

<?php

function myexamplefunction($html){
    $pattern = '/\[price (.*?)\]/';
    $replace = '<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
        <input type="hidden" value="_cart" name="cmd" /> 
        <input type="hidden" value="me@mydomain.com" name="business" /> 
        <input type="hidden" value="1" name="add" /> 
        <input type="hidden" value="$1" name="item_name" /> 
        <input type="hidden" value="" name="item_number" /> 
        <input type="hidden" value="17.00" name="amount" /> 
        <input type="hidden" value="2" name="no_shipping" /> 
        <input type="hidden" value="USD" name="currency_code" /> 
        <input border="0" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/x-click-but22.gif" alt="Make payments with PayPal - it\'s fast, free and secure!" />
      </form>';
    return preg_replace($pattern,$replace,$html);
}
于 2013-02-05T21:17:03.440 回答