0

所以我想做的是当用户按下提交按钮时,运行一个 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;

}

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

4

2 回答 2

1

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

于 2015-03-11T08:28:09.290 回答
0

你可能需要这样的东西:

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

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

于 2015-03-11T08:37:43.523 回答