Zend_Service_StrikeIron: Bundled Services
Zend_Service_StrikeIron comes with wrapper classes for three popular StrikeIron services.
ZIP Code Information
Zend_Service_StrikeIron_ZipCodeInfo provides a client for StrikeIron's Zip Code Information Service. For more information on this service, visit these StrikeIron resources:
The service contains a getZipCode() method that will retrieve information about a United States ZIP code or Canadian postal code:- 'password' => 'your-password'));
- // Get a client for the Zip Code Information service
- // Get the Zip information for 95014
- $zips = $response->serviceResult;
- // Display the results
- if ($zips->count == 0) {
- echo 'No results found';
- } else {
- // a result with one single zip code is returned as an object,
- // not an array with one element as one might expect.
- }
- // print all of the possible results
- foreach ($zips->zipCodes as $z) {
- $info = $z->zipCodeInfo;
- // show all properties
- // or just the city name
- }
- }
- // Detailed status information
- // http://www.strikeiron.com/exampledata/StrikeIronZipCodeInformation_v3.pdf
- $status = $response->serviceStatus;
U.S. Address Verification
Zend_Service_StrikeIron_USAddressVerification provides a client for StrikeIron's U.S. Address Verification Service. For more information on this service, visit these StrikeIron resources:
The service contains a verifyAddressUSA() method that will verify an address in the United States:
- 'password' => 'your-password'));
- // Get a client for the Zip Code Information service
- // Address to verify. Not all fields are required but
- // supply as many as possible for the best results.
- 'addressLine1' => '19200 Stevens Creek Blvd',
- 'addressLine2' => '',
- 'city_state_zip' => 'Cupertino CA 95014');
- // Verify the address
- $result = $verifier->verifyAddressUSA($address);
- // Display the results
- if ($result->addressErrorNumber != 0) {
- } else {
- // show all properties
- // or just the firm name
- // valid address?
- $valid = ($result->valid == 'VALID');
- }
Sales
Zend_Service_StrikeIron_SalesUseTaxBasic provides a client for StrikeIron's Sales & Use Tax Basic service. For more information on this service, visit these StrikeIron resources:
The service contains two methods, getTaxRateUSA() and getTaxRateCanada(), that will retrieve sales and use tax data for the United States and Canada, respectively.
- 'password' => 'your-password'));
- // Get a client for the Sales & Use Tax Basic service
- // Query tax rate for Ontario, Canada
- // Query tax rate for Cupertino, CA USA