gpt4 book ai didi

php - 使用 PHP 和 Regex 提取 Paypal 按钮 ID

转载 作者:搜寻专家 更新时间:2023-10-31 21:17:40 25 4
gpt4 key购买 nike

我有以下 Paypal“添加到购物车”HTML 按钮代码:

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="DJ445KDUWP402">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

使用 PHP 和正则表达式,谁能告诉我如何只获取“hosted_button_id”输入的值部分?

谢谢!

最佳答案

preg_match('~<input type="hidden" name="hosted_button_id" value="([0-9-A-Z]*?)">~', $html, $matches)
$matches[1]; //contains ID

应该可以解决问题

关于php - 使用 PHP 和 Regex 提取 Paypal 按钮 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5118952/

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