的想法是我想要循環在MYSQL的令牌,並與另一個值/字符串替換見下文如何循環str_replace()函數使用PHP MYSQL
https://i.stack.imgur.com/qdG4W.png
<?php
$token= $_POST["token"];
$replace_token = str_replace ("#", "new data", $token);
?>
的想法是我想要循環在MYSQL的令牌,並與另一個值/字符串替換見下文如何循環str_replace()函數使用PHP MYSQL
https://i.stack.imgur.com/qdG4W.png
<?php
$token= $_POST["token"];
$replace_token = str_replace ("#", "new data", $token);
?>
如果我的預覽我理解它是正確的,你想選擇一些東西,並替換特定領域內的內容? 嘗試將其替換(https://dev.mysql.com/doc/refman/5.7/en/string-functions.html#function_replace)
SELECT id, myNameField, REPLACE(myNameField,'#','newValue') as replacedField, someOtherField
FROM yourTable
WHERE yourCondition IS matched
ORDER BY yourWill
您可以直接使用SQL查詢,而不是去這樣做。
根據你的問題,你想要做一些像令牌值的開始循環,就像#和URL bla bla ..並且你想用適當的值替換。
所以只需運行sql查詢。
Update {table name} SET token {field name} = {'your respected data'};
添加適當的數據樣本和預期的結果..你的IMG尚不清楚.. – scaisEdge
現在後悔編輯 – JPZ
圖像中沒有有用的內容..所以添加適當的文本數據樣本和表示結果 – scaisEdge