2

私は、ユーザーがあるレベルから別のレベルにアップグレードする必要があるサブスクリプション システムに関係する Web サイトに取り組んでいます。少し説明させてください。つまり、4つの計画があります。ベーシック、シルバー、ゴールド、プラチナ。費用は次のとおりです。

  • 基本: $0.00
  • シルバー: $20.00
  • ゴールド: $30.00
  • プラチナ: $50.00

前払いオプションは次のとおりです。

  • 1ヶ月
  • 3ヶ月
  • 6ヵ月
  • 12ヶ月。

これらは私のテーブルです。

plans table:
id    name      cost
1     Basic      0.00    
2     Silver    20.00
3     Gold      30.00
4     Platinum  50.00

plans_period table:
id    sub_period
1     1
2     3
3     6
4     12

users table:
user_id  plan  plan_cost      user_plan_period  balance         plan_expiration
1        2     0.00(default)  0 (default)       0.00 (default)  NULL (default)

ユーザーがシステムをアップグレードするために、システムは残高テーブルをチェックして、ユーザーがどのように残っているか、新しいプランのコストを確認します。残高がユーザーがアップグレードしようとしている新しいプランの費用よりも多い場合、アップグレードは成功し、成功ページにリダイレクトされます。そうでない場合は、ユーザーが新しい費用を支払うための支払いボタンが表示されます。支払いシステムが統合されました。また、ユーザーがプランの途中で、より高いプランにアップグレードしたい場合、システムは新しいコストを比例配分し、同様にユーザーに請求する必要があります。私は以下のコードでこれをやろうとしています。

if ($plan & $period) {
    $user = new fncs();
    // What plan was chosen?
    list($name, $cost) = $db->get_row("select name, cost from plans where id='$plan'", ARRAY_N);
    list($sub_period) = $db->get_row("select sub_period from plans_period where sub_period='$period'", ARRAY_N);
    list($plan, $user_plan_period, $plan_cost, $plan_expiration) = $db->get_row("select u.plan, u.user_plan_period, u.plan_cost, u.plan_expiration, p.id from users u LEFT JOIN plans p ON p.id=u.plan where u.user_id='{$_SESSION['user_id']}'", ARRAY_N);
    $plan_expiration = ($plan_expiration = "NULL") ? '30' : '$plan_expiration';
    /*Current Cost of plan chosen */
    $totalcost1 = $cost * $sub_period;
    /* Cost of the user current plan */
    $totalcost2 = $plan_cost * $user_plan_period;
    /* Total number of days of the user current plan */
    $totaldays1 = 30 * $user_plan_period;
    /* Total number of days of the left for the user current plan */
    $today = date("m-d-Y"); 
    $dateDiff = strtotime($plan_expiration) - strtotime($today);
    $Daysleft = floor($dateDiff/(60*60*24));

    $totaldays2 = $totaldays1 - $Daysleft;

    $expiredate = strtotime($plan_expiration);

    $totalcost =  $totalcost1 -  ($totalcost2 * ($Daysleft / $totaldays1));

    $finalcost = number_format($totalcost, 2);

    // sufficient balance?
    if ($totalcost > $user->getBalance())
    {
        $errs[] = 'You have insufficient balance for the upgrade. The total cost is: '.$Daysleft.'';
    }
    else {
        $r = $db->query("update users set plan='$plan', user_plan_period='$period', plan_cost='$cost', plan_expiration=date_add(now(), interval 30 day) where user_id='{$_SESSION['user_id']}'");
        // Update balance
        $balance = $user->getBalance() - $cost;
        $db->query("update users set balance='$balance' where user_id='{$_SESSION['user_id']}'");
        // Reset sessions
        $user->processLogin($_SESSION['email']);
        // Insert into transactions
        $txt = "Account upgrade: <strong>$name</strong> for <s>N</s>$cost. Expires ".$_SESSION['plan_expiration'];
        $db->query("insert into transactions (user_id, txt, direction, amount, balance, date) values ('{$_SESSION['user_id']}', '$txt', 'd', '$cost', '$balance', now())");
        $_SESSION['msg'] = 'Account successfully upgraded. Plan expires on '.$_SESSION['plan_expiration'];

        header('location:my-account.php');
        exit;
    }
}

以下は、ユーザーがアップグレードするプランを選択するフォームです。

<div class="mainbar">
    <h3>Upgrade Account</h3>
    <?php
    if (isset($errs)) {
        echo '<p class="alert">';
        foreach($errs as $v){
            echo "$v ";
        }
        echo '</p>';
    }
    ?>
    <form class="form" method="post">
        <div class="rc">
            <p><label>Current Balance</label> <b><s>N</s><?= number_format($_SESSION['balance'], 2); ?></b></p>
            <p><label>Plan</label>
                <select class="txt iwdt" name="plan">
                <?php
                $r = $db->get_results("select id, name, cost from plans where id > 1");
                foreach ($r as $v) {
                    list ($id, $name, $cost) = $v;
                    echo '<option value="'.$id.'"';
                    echo $id == $_SESSION['plan'] ? ' selected="selected"' : '';
                    echo '>'.$name.' for N'.$cost.'</option>';
                }
                ?>
                </select>
                <select class="txt iwdt" name="period">
                    <option value="">Select Period</option>
                    <?php
                    $r = $db->get_results("select id, sub_period from plans_period");
                    foreach ($r as $v) {
                        list ($id, $sub_period) = $v;
                        echo '<option value="'.$id.'"';
                        echo $id == $_SESSION['period'] ? ' selected="selected"' : '';
                        echo '>'.$sub_period.' month(s)</option>';
                    }
                    ?>
                </select>
            </p>
            <p>
                <label>&nbsp;</label> <input type="submit" name="submit" class="button" value="Upgrade" /> or <a href="my-account.php">Cancel</a>
            </p>
        </div>
    </form>
</div>

誰かが私を正しい方向に向けることができますか?これから学べるチュートリアルはありますか?ありがとう。

返信してくれたすべての人に感謝します。

基本的に、これは私がいくつかの挑戦をしていると思うところです


$plan_expiration = ($plan_expiration = "NULL") ? '30' : '$plan_expiration';

この plan_expiration フィールドは、2011-06-03 のような年月日の形式の日付フィールドです。現在、これのデフォルト値は「NULL」です。ユーザーが最初にサイトにサインアップすると、有効期限が「NULL」に設定された $0.00 の基本メンバーシップ プランが割り当てられます。

ユーザーがアップグレードを希望する場合、プランの有効期限が切れるまでの残り日数を計算する必要があります。これは、残り日数に基づいて日割り計算されるためです。だから私はこれをやった

上記のコードに基づいて無効になっている場合、 $plan_expiration に「30」を割り当てました。次に、以下の構文を使用して残りの日数を計算しました

 
 $today = date("m-d-Y"); 
    $dateDiff = strtotime($plan_expiration) - strtotime($today);
    $Daysleft = floor($dateDiff/(60*60*24));

最初のエラーは、$Daysleft が負の値を返すことです

4

1 に答える 1

1

不足している日数を計算するには、実際の登録日も必要です。

この例を使用してみましょう:

5月15日(2011-05-15)にサインアップし、30日を想定して有効期限が切れます(これにより、6月15日(2011-06-15)に有効期限が切れます。

PHPの計算は次のように機能します。

$signupDate = strtotime('2011-05-15');
$expiration = 30; //this is in days, lets remember that for later
$expirationDate = $signupDate+($expiration*24*60*60); //calculate the expiration date
$today = time(); //theres no need for using date and strtotime of you just want the timestamp

$daysLeft = floor(($expirationDate-$today)/(60*60*24));

現在が負の値である場合$daysLeft(これは発生しないはずです)、彼のアカウントはしばらく前に期限切れになっています。ただし、アプリケーションの動作方法から、これは通常、ユーザープランの残り日数を示す正の値になるはずです。

于 2011-06-03T22:26:39.357 に答える