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


PHP Address::getState方法代码示例

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


在下文中一共展示了Address::getState方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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);
 }
开发者ID:leonardorifeli,项目名称:pagseguro,代码行数:14,代码来源:AddressTest.php

示例2: testValidaState

 public function testValidaState()
 {
     $state = 'SP';
     $address = new Address();
     $address->setState($state);
     $this->assertEquals($state, $address->getState());
 }
开发者ID:dindigital,项目名称:nfe-focus,代码行数:7,代码来源:AddressTest.php

示例3: 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;
    }
开发者ID:anas,项目名称:feedstore,代码行数:18,代码来源:TaxRate.php

示例4: testSetState

 /**
  * @todo Implement testSetState().
  */
 public function testSetState()
 {
     $this->object->setState(8);
     $this->assertEquals($this->object->getState(), 8);
 }
开发者ID:swat30,项目名称:safeballot,代码行数:8,代码来源:AddressTest.php

示例5: 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()];
 }
开发者ID:tomaj,项目名称:invoice-client,代码行数:4,代码来源:Serializer.php

示例6: testSetStateWorks

 public function testSetStateWorks()
 {
     $address = new Address();
     $address->setState('RS');
     $this->assertEquals('RS', $address->getState());
 }
开发者ID:hilltool,项目名称:tray-php,代码行数:6,代码来源:AddressTest.php


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