gpt4 book ai didi

regex - 检查自定义字段是否在正则表达式中包含h2标题

转载 作者:行者123 更新时间:2023-12-02 02:41:50 24 4
gpt4 key购买 nike

如何检查名为description的自定义字段在文本中是否包含标题?

以这个为例:

<h2>whatever in the heading</h2>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo

最佳答案

如果description是您的字段名,那么您可以尝试使用此代码。

<?php
$title = get_field( 'description' ); // <h2>whatever in the heading</h2>
if ( strpos( $title, '<h2>' ) !== false) {
echo 'H2 is exist.';
} else {
//Your Statement
}
?>

关于regex - 检查自定义字段是否在正则表达式中包含h2标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58983317/

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