本文整理匯總了PHP中InsightMySQLDAO::updateInsightDeprecated方法的典型用法代碼示例。如果您正苦於以下問題:PHP InsightMySQLDAO::updateInsightDeprecated方法的具體用法?PHP InsightMySQLDAO::updateInsightDeprecated怎麽用?PHP InsightMySQLDAO::updateInsightDeprecated使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類InsightMySQLDAO
的用法示例。
在下文中一共展示了InsightMySQLDAO::updateInsightDeprecated方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testupdateInsightDeprecated
public function testupdateInsightDeprecated()
{
$dao = new InsightMySQLDAO();
//update existing baseline
$result = $dao->updateInsightDeprecated('avg_replies_per_week', 1, '2012-05-01', "Yay", 'LOLlerskates', Insight::EMPHASIS_MED);
$this->assertTrue($result);
//check that value was updated
$result = $dao->getInsight('avg_replies_per_week', 1, '2012-05-01');
$this->assertEqual($result->headline, 'Yay');
$this->assertEqual($result->text, 'LOLlerskates');
$this->assertEqual($result->emphasis, Insight::EMPHASIS_MED);
//update nonexistent baseline
$result = $dao->updateInsightDeprecated('avg_replies_per_week', 1, '2012-05-10', 'ooooh burn');
$this->assertFalse($result);
}