royal mail price calculator
1.0.0
이 라이브러리를 사용하면 Royal Mail로 패키지를 보내는 비용을 계산할 수 있습니다.
2017년 3월부터 유효한 가격이 포함되어 있습니다.
composer require justinhook/royal-mail-price-calculator
서비스 | 수업 |
---|---|
1등 | FirstClassService() |
2학년 | SecondClassService() |
1등급으로 서명됨 | SignedForFirstClassService() |
2등급으로 서명됨 | SignedForSecondClassService() |
오전 9시까지 보장 | GuaranteedByNineAmService() |
토요일 보장으로 오전 9시까지 보장 | GuaranteedByNineAmWithSaturdayService() |
오후 1시까지 보장 | GuaranteedByOnePmService() |
토요일 보장으로 오후 1시까지 보장 | GuaranteedByOnePmWithSaturdayService() |
<?php
require ' vendor/autoload.php ' ;
use RoyalMailPriceCalculator Calculator ;
use RoyalMailPriceCalculator Package ;
use RoyalMailPriceCalculator Services GuaranteedByOnePmService ;
use RoyalMailPriceCalculator Services FirstClassService ;
$ calculator = new Calculator ();
$ package = new Package ();
$ package -> setDimensions ( 15 , 15 , 0.4 );
$ package -> setWeight ( 90 );
$ calculator -> setServices ( array ( new FirstClassService (), new GuaranteedByOnePmService ()));
foreach ( $ calculator -> calculatePrice ( $ package ) as $ calculated )
{
echo $ calculated [ ' service ' ]-> getName () . "n" ;
foreach ( $ calculated [ ' prices ' ] as $ price ) {
echo " → £ { $ price [ ' price ' ]} (Compensation: £ { $ price [ ' compensation ' ]} ) n" ;
}
echo "n" ;
}
출력됩니다:
1st Class Service
→ £0.62 (Compensation: £20)
Guaranteed by 1pm
→ £6.40 (Compensation: £500)
→ £7.40 (Compensation: £1000)
→ £9.40 (Compensation: £2500)