doukao2180 2015-12-01 11:02
浏览 197
已采纳

if使用三元运算符在echo中的语句

I have the following echo statement:

echo '<li><a href="'. esc_url(add_query_arg( 'booking-id', $the_query->post->ID, site_url( '/pay-deposit/' ) )) .'">Pay deposit</a></li>';

I want to add the class "disabled" to the link when a parameter = 1

Here is what I am trying using ternary operators

    $is_deposit_paid = get_post_meta( $the_query->post->ID, 'deposit_paid', true );
    echo '<li><a '.( $is_deposit_paid = 1) ? "disabled" .' href="'. esc_url(add_query_arg( 'booking-id', $the_query->post->ID, site_url( '/pay-deposit/' ) )) .'">Pay deposit</a></li>';

however this produces a syntax error. How do I write this out correctly?

  • 写回答

2条回答 默认 最新

  • dpecb06062 2015-12-01 11:13
    关注

    There are three issues to solve:

    • ternary operator requires ... 3 arguments (surprise!), so after the second, you need to add the : and the string you want in the else case.

    • the whole ternary expression should be put in brackets (not the condition) before you apply the dot operator to it in building your string.

    • You need to compare, not assign (== instead of =)

    So this would do it:

    $is_deposit_paid = get_post_meta( $the_query->post->ID, 'deposit_paid', true );
    echo '<li><a '.( $is_deposit_paid == 1  ? "disabled" : "") . 
        ' href="'. esc_url(add_query_arg( 'booking-id', $the_query->post->ID, 
            site_url( '/pay-deposit/' ) )) . 
        '">Pay deposit</a></li>';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部