0
我從mysql獲取blob數據。 如何檢查blob數據是否存在或不使用php。檢查blob(圖像)是否存在或不使用mysql/php
if (image exists)
{
#Do some operation
}
else
{
#Do some operation
}
我從mysql獲取blob數據。 如何檢查blob數據是否存在或不使用php。檢查blob(圖像)是否存在或不使用mysql/php
if (image exists)
{
#Do some operation
}
else
{
#Do some operation
}
也許只是比較,如果提取blob列不爲空?
if (!empty($row['blob_column'])) {
}