MySQL中的大规模URL解码

时间:2011-09-23 20:39:37

标签: php mysql decode encode

我有一个包含10,000多个条目的MySQL表。表格中有四列。其中一个是URL。一些URL值被编码,一些被解码。我希望将它们全部解码。

我如何直接使用PHP或MySQL?

谢谢!

1 个答案:

答案 0 :(得分:0)

这是你想要的吗?

$result = $db->query("SELECT encoded_url FROM table");
while($row = mysql_fetch_assoc($result)){
    $decoded = your_function_to_decode($row['encoded_url']);
}