หลังจากเราอัพเกรดเป็น PHP 5.5 เราจะได้รับข้อผิดพลาดต่อไปนี้เมื่อเพิ่มเว็บไซต์มุมมองร้านค้าหรือร้านค้า ข้อผิดพลาดนี้ยังคงมีอยู่ใน Magento 1.9.0.1
Exception message: Deprecated functionality: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in app/code/core/Mage/Core/Helper/Abstract.php on line 238
Trace: #0 [internal function]: mageCoreErrorHandler(8192, 'preg_replace():...', 'app...', 238, Array)
#1 app/code/core/Mage/Core/Helper/Abstract.php(238): preg_replace('# <(?![/a-z]) |...', 'htmlentities('$...', 'New Store Name')
#2 app/code/core/Mage/Adminhtml/controllers/System/StoreController.php(175): Mage_Core_Helper_Abstract->removeTags('New Store Name')
#3 app/code/core/Mage/Core/Controller/Varien/Action.php(418): Mage_Adminhtml_System_StoreController->saveAction()
#4 app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(250): Mage_Core_Controller_Varien_Action->dispatch('save')
#5 app/code/core/Mage/Core/Controller/Varien/Front.php(172): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#6 app/code/core/Mage/Core/Model/App.php(354): Mage_Core_Controller_Varien_Front->dispatch()
#7 app/Mage.php(686): Mage_Core_Model_App->run(Array)
#8 index.php(87): Mage::run('', 'store')
#9 {main}
นี่คือรหัสที่ทำให้เกิดข้อผิดพลาด
รหัสสามารถพบได้ใน Mage_Core_Helper_Abstract
/**
* Remove html tags, but leave "<" and ">" signs
*
* @param string $html
* @return string
*/
public function removeTags($html)
{
$html = preg_replace("# <(?![/a-z]) | (?<=\s)>(?![a-z]) #exi", "htmlentities('$0')", $html);
$html = strip_tags($html);
return htmlspecialchars_decode($html);
}
นี่คือความคิดของฉันแพทช์ที่ง่ายที่สุดสำหรับวิธีการ:
/**
* Remove html tags, but leave "<" and ">" signs
*
* @param string $html
* @return string
*/
public function removeTags($html)
{
$html = preg_replace_callback("# <(?![/a-z]) | (?<=\s)>(?![a-z]) #xi",
create_function('$matches', 'return htmlentities($matches);'),
$html
);
$html = strip_tags($html);
return htmlspecialchars_decode($html);
}
Mage_Adminhtml_System_StoreController::storeAction()
วิธีการที่จะถูกใช้โดยเฉพาะ
มีสามที่ที่เป็นไปได้ในการแก้ไข:
- Mage_Core_Helper_Abstract => นั่นคือที่ตั้งของเมธอด แต่มันแย่มากเพราะมันแตะไฟล์หลัก
- เขียนใหม่ Mage_Core_Helper_Abstract => มันเป็นคลาสนามธรรมดังนั้นจึงไม่ควร / ไม่สามารถเขียนใหม่ได้
- เขียน Mage_Adminhtml_Helper_Data และเพิ่มวิธีการที่นั่น => ฉันคิดว่านี่เป็นวิธีที่จะไป
พวกคุณคิดอย่างไร
- ตัวเลือก # 3 คือวิธีที่ถูกต้องในการแก้ไขปัญหา
- รหัสในโปรแกรมแก้ไขของฉันถูกต้องหรือไม่