PHP 5.5のバグ-非推奨の機能:preg_replace()


16

PHP 5.5にアップグレードした後、Webサイト、ストア、またはストアビューを追加すると、次のエラーが表示されます。このバグは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()

修正できる場所は3つあります。

  1. Mage_Core_Helper_Abstract =>それはメソッドが置かれている場所ですが、コアファイルに触れるためにひどいです。
  2. Mage_Core_Helper_Abstract =>を書き換えます。これは抽象クラスなので、書き換えないでください。
  3. Mage_Adminhtml_Helper_Dataを書き換えて、そこにメソッドを追加します。=>これが道だと思います。

皆さんはどう思いますか?

  1. オプション#3は問題を修正する正しい方法です。
  2. パッチのコードは正しいですか?

問題はまだ1.9.1 CEおよび1.14.1 EEに存在します-user20422

回答:


13

はい、あなたは正しいです。adminhtmlヘルパーを修正します。これは私が使用する修正の差分です:

--- app/code/core/Mage/Core/Helper/Abstract.php.orig 2014-09-25 15:32:56.000000000 +0200
+++ app/code/core/Mage/Core/Helper/Abstract.php 2014-09-25 15:34:42.000000000 +0200
@@ -235,7 +235,9 @@
  */
 public function removeTags($html)
 {
-        $html = preg_replace("# <(?![/a-z]) | (?<=\s)>(?![a-z]) #exi", "htmlentities('$0')", $html);
+        $html = preg_replace_callback("# <(?![/a-z]) | (?<=\s)>(?![a-z]) #xi", function($matches) {
+            return htmlentities($matches[0]);
+        }, $html);
         $html =  strip_tags($html);
         return htmlspecialchars_decode($html);
 }

これは、動作がphp 5.4と同じであることを確認するテストです。

<?php

namespace Vinai\Kopp\Magento\Tests;

class MageAdminhtmlHelperDataTest extends \PHPUnit_Framework_TestCase
{
    /**
     * @var \Mage_Adminhtml_Helper_Data
     */
    private $helper;

    static public function setUpBeforeClass()
    {
        ini_set('display_errors', 1);
        umask(0);
        error_reporting(E_ALL);
        require_once 'app/Mage.php';
        \Mage::setIsDeveloperMode(true);
    }

    public function setUp()
    {
        $this->helper = new \Mage_Adminhtml_Helper_Data();
    }

    /**
     * @covers \Mage_Core_Helper_Abstract::removeTags
     * @dataProvider removeTagsDataProvider
     */
    public function testRemoveTags($inputHtml, $expected)
    {
        $result = $this->helper->removeTags($inputHtml);
        $this->assertEquals($expected, $result);
    }

    public function removeTagsDataProvider()
    {
        return array(
            array('<b>', ''),
            array('<b> >', ' >'),
            array('<b> <', ' <'),
            array('<b/> </', ' '),
            array('< <b/>', '< '),
            array('> <b/>', '> '),
            array('</ <b/>', ''),
            array('x />', 'x />'),
            array('> <', '> <'),
            array('>>', '>>'),
            array('<<', '<<'),
            array('<>', '<>'),
        );
    }
} 

4

これは、Magento EE 1.14.1および1.9.1で修正されました。追加の非互換性はpack()/ unpack()の変更で、インストール中にBackup / Rollbackと一部の拡張機能に影響します-tarファイルに影響するもの。実稼働環境でMagentoを実行している人は誰も使用していないと思います。


以前のバージョン用にパッチがリリースされるのは
いつですか?

場合/とき、まだ分かりません
ピョートル・カミンスキー

3

簡単な答え:MagentoはPHP 5.5に対応していません。ウェブサーバーを5.5に更新しないでください。

より長い答え:Magentoはこのバグを次のバージョンで修正するので、コアハックを作成して最善を尽くすと思います。コードが正しいかどうかわかりませんが、ごめんなさい。


こんにちは、ファビアン、すべてのサーバーをPHP 5.5でかなり長い間実行しています。これは私が遭遇した最初の問題です。他に既知の非互換性はどれですか、またはこの情報はどこから来ますか
RobM84 14年

1
tbhわからない。あなただけの変更履歴をチェックすることができphp.net/manual/en/migration54.php方法やINI設定のためとgrep
ファビアンBlechschmidt

1
実際に、これはMagentoのCEでのみPHP 5.5の問題である、我々はそれで実行されている最後の半年間に別のものをヒットしませんでした
Flyingmana

2
また、5.3は時代遅れであり、PHP 5.4はほとんどの人がAPCで使用しているため、実際の安定状態には決してならないため、これは本当に悪いアドバイスです。古いPHPバージョンに含まれています
Flyingmana
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.