วิธีการทั้งหมดต่อไปนี้ใช้ในวีโอไอพีคอร์ดังนั้นวิธีใดที่เป็นวิธีที่ต้องการ (หรือ "วิธีปฏิบัติที่ดีที่สุด") ล่าสุด?
Mage::throwException('Some Message')
- 732 ประเพณีthrow new Exception('Some Message')
- 419 ประเพณีthrow Mage::exception('Vendor_Module', 'Some Message')
- 94 ประเพณี
(จำเป็นต้องสร้างVendor_Module_Exception
ชั้นเรียน)
grep -r throwException /path/to/magento/app/code/core | wc -l ; grep -r throw\ new /path/to/magento/app/code/core | wc -l ; grep -r throw\ Mage /path/to/magento/app/code/core | wc -l
- แม้ว่าต้องให้คุณรู้ว่าสิ่งที่มองหาเกินไป