我在表格中有一个文件,我怎么可能设置空白"一些文件(在blob中)?
所有
答案 0 :(得分:4)
使用EMPTY_BLOB()
:
$text1 = file_get_contents("first.txt");
$text2 = file_get_contents("second.txt");
preg_match_all('/.*?\R!\R*/s', $text1, $blocks1);
preg_match_all('/.*?\R!\R*/s', $text2, $blocks2);
$result = array_diff($blocks1[0], $blocks2[0]);
print_r($result);