我有一个包含10,000多个条目的MySQL表。表格中有四列。其中一个是URL。一些URL值被编码,一些被解码。我希望将它们全部解码。
我如何直接使用PHP或MySQL?
谢谢!
答案 0 :(得分:0)
这是你想要的吗?
$result = $db->query("SELECT encoded_url FROM table");
while($row = mysql_fetch_assoc($result)){
$decoded = your_function_to_decode($row['encoded_url']);
}