を列挙:文字列の変化と私は文字列を持っている、と私は再配置にあるように値を変更したい、例えば私は、この持っている値のPHP
{
"code_2":"CODGD",
"description_2":"First product",
"price_2":"45.0",
"quantity_2":"1",
"quantityant_2":"1",
"subtotal_2":"45.0",
"code_3":"CODRT",
"description_3":"Second product",
"price_3":"12.68",
"quantity_3":"1",
"quantityant_3":"1",
"subtotal_3":"12.68",
"code_7":"CODPO",
"description_7":"Third product",
"price_7":"434.0",
"quantity_7":"1",
"quantityant_7":"1",
"subtotal_7":"434.0"
}
それは2,3および7のようになりますが、私は必要なの1,2,3 すべてのオブジェクトは6のグループにあります。 code_1、description_1、price_1、quantity_1、quantityant_1、subtotal_1 。私はstr_replaceを使用して考えて少し失われたイム
れ
{
"code_1":"CODGD",
"description_1":"First product",
"price_1":"45.0",
"quantity_1":"1",
"quantityant_1":"1",
"subtotal_1":"45.0",
"code_2":"CODRT",
"description_2":"Second product",
"price_2":"12.68",
"quantity_2":"1",
"quantityant_2":"1",
"subtotal_2":"12.68",
"code_3":"CODPO",
"description_3":"Third product",
"price_3":"434.0",
"quantity_3":"1",
"quantityant_3":"1",
"subtotal_3":"434.0"
}
あなたは私を助けることを願って: は私が必要なのは、このような例_と「renumeratedすることによりsurrondedオブジェクトは、ということです。
:おかげ
エキストラ詳細 は、私が実際にこの形式を持つ配列で情報を取得します
あなたのコード –