本文整理汇总了PHP中Address::getCountry方法的典型用法代码示例。如果您正苦于以下问题:PHP Address::getCountry方法的具体用法?PHP Address::getCountry怎么用?PHP Address::getCountry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Address
的用法示例。
在下文中一共展示了Address::getCountry方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: gettersShouldReturnTheAttributeValue
/**
* @test
*/
public function gettersShouldReturnTheAttributeValue()
{
$this->assertAttributeEquals($this->address->getCountry(), 'country', $this->address);
$this->assertAttributeEquals($this->address->getState(), 'state', $this->address);
$this->assertAttributeEquals($this->address->getCity(), 'city', $this->address);
$this->assertAttributeEquals($this->address->getPostalCode(), 'postalCode', $this->address);
$this->assertAttributeEquals($this->address->getDistrict(), 'district', $this->address);
$this->assertAttributeEquals($this->address->getStreet(), 'street', $this->address);
$this->assertAttributeEquals($this->address->getNumber(), 'number', $this->address);
$this->assertAttributeEquals($this->address->getComplement(), 'complement', $this->address);
}
示例2: __construct
public function __construct($name, TaxIdNumber $taxIdNumber, Address $address, BankAccount $account)
{
$this->name = $name;
$this->taxIdNumber = (string) $taxIdNumber;
$this->postalCode = $address->getPostalCode();
$this->street = $address->getStreet();
$this->city = $address->getCity();
$this->country = $address->getCountry();
$this->bankName = $account->getBankName();
$this->bankNumber = $account->getBankNumber();
$this->bicCode = $account->getBicCode();
}
示例3: modify
protected function modify(Address $address)
{
$q = $this->dao->prepare('UPDATE ' . $this->table() . ' SET TITLE = :title, ADDRESS_1 = :address1, ADDRESS_2 = :address2, ZIP_CODE = :zipCode, CITY = :city, COUNTRY = :country, USER_ID = :userId WHERE ID = :id');
$q->bindValue(':title', $address->getTitle());
$q->bindValue(':address1', $address->getAddress1());
$q->bindValue(':address2', $address->getAddress2());
$q->bindValue(':zipCode', $address->getZipCode());
$q->bindValue(':city', $address->getCity());
$q->bindValue(':country', $address->getCountry());
$q->bindValue(':userId', $address->getUserId(), PDO::PARAM_INT);
$q->bindValue(':id', $address->id(), PDO::PARAM_INT);
$q->execute();
}
示例4: format
/**
* Formats an address.
*
* @param \Libreworks\Microformats\Address $address
* @return string The HTML markup
*/
public function format(Address $address)
{
$fields = ['p-street-address' => $address->getStreet(), 'p-extended-address' => $address->getExtended(), 'p-post-office-box' => $address->getPobox(), 'p-locality' => $address->getLocality(), 'p-region' => $address->getRegion(), 'p-postal-code' => $address->getPostal(), 'p-country' => $address->getCountry()];
$tags = [];
foreach ($fields as $k => $v) {
if (strlen($v) > 0) {
$tags[] = '<span class="' . $k . '">' . htmlspecialchars($v) . '</span>';
}
}
$geo = $address->getGeo();
if ($geo !== null) {
$tags[] = '<span class="p-geo">' . $this->geoFormatter->format($geo) . '</span>';
}
return '<span class="h-adr">' . implode(' ', $tags) . '</span>';
}
示例5: __construct
public function __construct($name, TaxIdNumber $taxIdNumber, Address $address, BankAccount $account)
{
if (!$name) {
throw new \InvalidArgumentException('Name is required');
}
$this->name = $name;
$this->taxIdNumber = (string) $taxIdNumber;
$this->postalCode = $address->getPostalCode();
$this->street = $address->getStreet();
$this->city = $address->getCity();
$this->country = $address->getCountry();
$this->bankName = $account->getBankName();
$this->bankNumber = $account->getBankNumber();
$this->bicCode = $account->getBicCode();
}
示例6: calculateTax
public static function calculateTax($taxClass, $productPrice, $address)
{
if (!$address) {
$address = new Address();
}
$country = $address->getCountry();
$province = $address->getState();
$sql = 'select `tax_rate` from ecomm_tax_rate where country = "' . e($country) . '" AND
province = "' . e($province) . '" AND
tax_class = "' . e($taxClass) . '"';
$result = Database::singleton()->query_fetch($sql);
$taxRate = $result['tax_rate'];
if (!$taxRate) {
$taxRate = 0;
}
$taxRate = $taxRate / 100;
return (double) $taxRate * (double) $productPrice;
}
示例7: update
/**
* 返回更新国家信息
* @access public
*/
function update()
{
$m = new Address();
$id = get_post_value('id');
$data = $m->getCountry($id);
//返回查询国家数据(model模式)
$this->assign('data', $data);
}
示例8: testGetCountry
/**
* Tests Address->getCountry()
*/
public function testGetCountry()
{
$this->assertEquals('COUNTRY', $this->Address->getCountry());
}
示例9: beforeAction
/**
* 系统函数
* @access public
*/
function beforeAction()
{
$m = new Address();
$data = $m->getCountry();
$this->assign('country', $data);
}
示例10: testSetCountry
/**
* @todo Implement testSetCountry().
*/
public function testSetCountry()
{
$this->object->setCountry(8);
$this->assertEquals($this->object->getCountry(), 8);
}
示例11: encodeAddress
public function encodeAddress(Address $address)
{
return ['street' => $address->getStreet(), 'street2' => $address->getStreet2(), 'zip' => $address->getZip(), 'city' => $address->getCity(), 'country' => $address->getCountry(), 'state' => $address->getState(), 'email' => $address->getEmail(), 'tel' => $address->getTel(), 'fax' => $address->getZip()];
}
示例12: testSetCountry
/**
* Tests Address->setCountry()
*/
public function testSetCountry()
{
$this->Address->setCountry('country');
$this->assertEquals('country', $this->Address->getCountry());
}