我曾向BLOB出口过一个使用php的剪辑。 显然,博彩不是正常的领域,而是有时使用。 但在此我需要的是,我需要这一文字才能工作,用速成表格,每行出口。 布洛布正在对此进行改观。 我曾试图将64-encode the blob作为基础,但我认为,将不正确地出口该书。
这就是我迄今为止所做的事情:
function exportcsv($tables) {
foreach ($tables as $k => $v) {
$fh = fopen( sql/ .$v. .csv , w );
$sql = mysql_query("SELECT * FROM $v");
while ($row = mysql_fetch_row($sql)) {
$line = array();
foreach ($row as $key => $v) {
$line[] = base64_encode($v);
}
fputcsv($fh, $line, chr(9)); //tab delimiting
}
fclose($fh);
}
}
希望得到任何帮助。
EDIT: Here is an image of the blob export WITHOUT base64_encode(). https://www.strongspace.com/shared/crypok1lxb
So, will base64 protect the format of blob when the need to reimport arises?