当前位置: 首页>>代码示例>>PHP>>正文


PHP task::getCurrentBid方法代码示例

本文整理汇总了PHP中task::getCurrentBid方法的典型用法代码示例。如果您正苦于以下问题:PHP task::getCurrentBid方法的具体用法?PHP task::getCurrentBid怎么用?PHP task::getCurrentBid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在task的用法示例。


在下文中一共展示了task::getCurrentBid方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: task

    //echo "post not set\n";
}
$task = new task();
$error = $task->getFromDB($intaskid);
if ($error == NULL) {
    //Convert task to usable array
    $taskout = array();
    $taskout['TaskID'] = $task->taskid;
    $taskout['Lister'] = $task->userid;
    $taskout['Title'] = $task->title;
    $taskout['Description'] = $task->description;
    $taskout['Location'] = $task->location;
    $taskout['Category'] = $task->category;
    $taskout['Tags'] = $task->tags;
    $taskout['NumImages'] = $task->numimg;
    $taskout['CurrentBid'] = $task->getCurrentBid();
    $taskout['EndDateTime'] = $task->enddatetime;
    $taskout['HighestBidderID'] = $task->winnerid;
    if ($taskout['HighestBidderID'] != null) {
        $winner = new user();
        $winner->getFromDB($taskout['HighestBidderID']);
        $taskout['HighestBidderUsername'] = $winner->username;
    }
    //Get user info
    $lister = new user();
    if ($lister->getFromDB($task->userid) == null) {
        $taskout['ListerUsername'] = $lister->username;
        $taskout['ListerAvatarURL'] = $lister->getAvatarURL();
        //$taskout['ListerAvatarURL']=$lister->DEBUGgetAvatarURL();
        $rating = $lister->getListerRating();
        $taskout['ListerRating'] = $rating['rating'];
开发者ID:sammyr2011,项目名称:Task_Master,代码行数:31,代码来源:view_task_android.php

示例2: header

        $_SESSION['msg_bidnegative'] = "Bid Cannot Be Negative";
    }
    if (isset($biderror['bidself'])) {
        $_SESSION['msg_bidself'] = "Can't bid on own task";
    }
    if (isset($biderror['login'])) {
        $_SESSION['msg_needlogin'] = "Log in to bid";
    }
    //redirect to prevent form resubmission on refresh
    header("Location: /ViewTask.php?id=" . $intaskid);
    die;
}
//AJAX for getting the current bid
if (isset($_GET['getCurrentBid'])) {
    echo 'Current bid: $<b>';
    echo $task->getCurrentBid();
    echo '.00';
    if (isset($_SESSION['userid']) && $task->getBidLeaderID() == $_SESSION['userid']) {
        echo ' (You)';
    }
    echo '</b>';
    die;
}
//show alert if task is not active
if (count($error) == 0 && $task->active == 0) {
    if (isset($_SESSION['userid']) && $task->winnerid == $_SESSION['userid']) {
        $_SESSION['msg_taskover_won'] = "Task ended, you won!";
    } else {
        $_SESSION['msg_taskover'] = "Task ended";
    }
}
开发者ID:sammyr2011,项目名称:Task_Master,代码行数:31,代码来源:ViewTask.php


注:本文中的task::getCurrentBid方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。