gpt4 book ai didi

php - 解析错误 : syntax error, 意外 'endif' (T_ENDIF)?

转载 作者:行者123 更新时间:2023-12-05 08:54:15 26 4
gpt4 key购买 nike

我在使用 php endif 时遇到错误,找不到错误。在这里我给出了我的代码。请帮我解决这个问题

       <?php if( have_rows('home-video-slider') ): ?>
<?php while( have_rows('home-video-slider') ): the_row();
$video_banner = get_sub_field('video-banner');
?>
<div class="item">
<div class="fm-video-banner">
<?php if( $video_banner ); ?>
<img src="<?php echo $video_banner['url']; ?>"/>
<?php endif; ?>

<a class="popup-youtube fm-play-icon"
href="https://www.youtube.com/embed/5ktgB9hlETw">
<span>
<i class="fa fa-play" aria-hidden="true"></i>
</span>
</a>
</div>
</div>
<?php $p++; endwhile; ?>
<?php endif; ?>

最佳答案

语法错误:

<?php if( $video_banner ); ?>

替换为

<?php if( $video_banner ): ?>

在 if 条件之后写 ; 就像写

<?php
if( $video_banner )
{
; //Do nothing
}
?>

这意味着你有一个多余的endif;

关于php - 解析错误 : syntax error, 意外 'endif' (T_ENDIF)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50561459/

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