1
我有一個正則表達式,發現在兩個方括號中的文字:(PHP)替換字符串數組值
preg_match_all("/(?<=\[).+?(?=\])/", $body, $matches);
從一個陣列稱爲row
我需要在關鍵的值與正則表達式匹配,並將其替換爲$body
字符串。
例如,
foreach ($matches[0] as $array_key) {
row->$array_key;
//The value at the specific key, but I need to take this value and put it back in the spot where its key was found in the body string
}
任何例如字符串和預期輸出經過一些事情的問題聽起來不清楚看起來你正在尋找'preg_repace' –
是否有任何代碼 – WowThatsLoud
'行 - > $ array_key;'看起來你正在處理對象,而不是數組。顯示'$ body'和'row'的示例輸入內容 – RomanPerekhrest