PHP 中单个 IF 语句中的多个函数



所以我想做的是当用户按下提交按钮时,运行一个php查询。在该 php 查询中,如果满足"If 语句"条件,我想执行一个操作(在我的例子中是页面重定向)并返回 false。

[编辑] 整个查询代码如下所示:

add_filter( ‘mycred_add’, ‘mycred_pro_restrict_negative_balances’, 1, 3 );
function mycred_pro_restrict_negative_balances( $reply, $request, $mycred ) {
  if ( $reply === false || $request[‘amount’] > 0 ) return $reply;
  extract( $request );
  // Users current balance
  $current_balance = $mycred->get_users_balance( $user_id, $type );
  // If balance is zero – decline OR If we are deducting points, make sure the amount will not take us below zero
  if (( $current_balance <= 0 )||(($current_balance – abs( $amount )) < 0 )) {
    $redirect_to_page = 22;
    return false;
  }
  return $reply;
}

我想知道查询是否有效?如果它有问题,请提及更正。提前感谢您帮助/试图帮助我。

在调用函数中,测试 FALSE 返回值。如果为 false,则在处理需要对此返回 FALSE 的函数执行的任何其他操作后调用重定向。

你可能想这样:

if ( $current_balance <= 0 ) {
 /* Redirection */
 header("Location: http://www.example.com/page10.php"); 
 exit();
}

发送标头"位置"将告诉浏览器转到指定的URL。这是最简单的重定向方法。您不必返回 false。

相关内容

  • 没有找到相关文章

最新更新