royal mail price calculator
1.0.0
このライブラリを使用すると、Royal Mail で荷物を送信するコストを計算できます。
2017 年 3 月から有効な価格が含まれています。
最新バージョンをcomposer require justinhook/royal-mail-price-calculator
サービス | クラス |
---|---|
1等 | FirstClassService() |
2等 | SecondClassService() |
ファーストクラスの署名済み | 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)