本文整理汇总了PHP中Transaction::getDate方法的典型用法代码示例。如果您正苦于以下问题:PHP Transaction::getDate方法的具体用法?PHP Transaction::getDate怎么用?PHP Transaction::getDate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Transaction
的用法示例。
在下文中一共展示了Transaction::getDate方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: createTransaction
protected function createTransaction(\SimpleXMLElement $node, Transaction $tx, Account $account)
{
$nodes = ['accountFrom' => $account->getAccountNumber(), 'currency' => $tx->getCurrency(), 'amount' => number_format($tx->getAmount(), 2), 'accountTo' => $tx->getAccountNumber(), 'ks' => $tx->getConstantSymbol(), 'vs' => $tx->getVariableSymbol(), 'ss' => $tx->getSpecificSymbol(), 'bic' => $tx->getBankCode(), 'date' => $tx->getDate()->format('Y-m-d'), 'comment' => $tx->getComment(), 'benefName' => $tx->getBenefName(), 'benefStreet' => $tx->getBenefStreet(), 'benefCity' => $tx->getBenefCity(), 'benefCountry' => $tx->getBenefCountry(), 'remittanceInfo1' => $tx->getRemittanceInfo1(), 'remittanceInfo2' => $tx->getRemittanceInfo2(), 'remittanceInfo3' => $tx->getRemittanceInfo3(), 'paymentType' => $tx->getSpecification()];
foreach ($nodes as $el => $value) {
if (!empty($value)) {
$node->addChild($el, $value);
}
}
}
示例2: createTransaction
protected function createTransaction(\SimpleXMLElement $node, Transaction $tx, Account $account)
{
$nodes = ['accountFrom' => $account->getAccountNumber(), 'currency' => $tx->getCurrency(), 'amount' => number_format($tx->getAmount(), 2), 'accountTo' => $tx->getAccountNumber(), 'bankCode' => $tx->getBankCode(), 'ks' => $tx->getConstantSymbol(), 'vs' => $tx->getVariableSymbol(), 'ss' => $tx->getSpecificSymbol(), 'date' => $tx->getDate()->format('Y-m-d'), 'messageForRecipient' => $tx->getUserMessage(), 'comment' => $tx->getComment(), 'paymentType' => $tx->getSpecification()];
foreach ($nodes as $el => $value) {
if (!empty($value)) {
$node->addChild($el, $value);
}
}
}
示例3: safeInsertDate
/**
* Helper function for adding transactions to the daily balance.
*
* @param Transaction $transaction
* @param boolean $sort Flag for disabling sort on insert. Used for bulk loading.
*/
private function safeInsertDate(Transaction $transaction, $sort = false)
{
$date = $transaction->getDate();
if (!array_key_exists($date, $this->mDailyBalances)) {
$this->mDailyBalances[$date] = 0.0;
}
$this->mDailyBalances[$date] += $transaction->getAmount();
if ($sort) {
uksort($this->mDailyBalances, array($this, "dateCompare"));
}
}