mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-09 08:02:48 +08:00
改进parseTime方法
This commit is contained in:
@@ -509,6 +509,11 @@ abstract class Builder
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$bindName = $bindName ?: $key;
|
$bindName = $bindName ?: $key;
|
||||||
|
|
||||||
|
if ($this->query->isBind($bindName)) {
|
||||||
|
$bindName .= '_' . str_replace('.', '_', uniqid('', true));
|
||||||
|
}
|
||||||
|
|
||||||
$this->query->bind($bindName, $value, $bindType);
|
$this->query->bind($bindName, $value, $bindType);
|
||||||
return ':' . $bindName;
|
return ':' . $bindName;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user