- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在笔记本电脑上使用 wamp 进行一个项目。我有大约 17000 行和 6 列数据要添加到数据库的 4 个不同表中。这是通过上传 excel 文件并单击导入按钮来完成的。注意!我正在使用 excel 到 mysql 插件,这对于项目来说是必需的,因为它是程序的功能之一。通常不会有那么多的数据插入到表中。尽管需要很长时间,但一切正常。我只是担心在上传过程中整个网站无法访问。下面是上传脚本。有什么技巧可以改进以下脚本以加快插入速度并在插入繁忙时使站点可访问吗?
<?php
$conn = mysqli_connect("localhost","root","","eftposcentral");
require_once('vendor/php-excel-reader/excel_reader2.php');
require_once('vendor/SpreadsheetReader.php');
if (isset($_POST["import"]))
{
$allowedFileType = ['application/vnd.ms-excel','text/xls','text/xlsx','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'];
if(in_array($_FILES["file"]["type"],$allowedFileType)){
$targetPath = 'uploads/'.$_FILES['file']['name'];
move_uploaded_file($_FILES['file']['tmp_name'], $targetPath);
$Reader = new SpreadsheetReader($targetPath);
$sheetCount = count($Reader->sheets());
for($i=0;$i<$sheetCount;$i++)
{
$Reader->ChangeSheet($i);
foreach ($Reader as $Row)
{
$po = "";
if(isset($Row[0])) {
$po = mysqli_real_escape_string($conn,$Row[0]);
}
$business = "";
if(isset($Row[1])) {
$business = mysqli_real_escape_string($conn,$Row[1]);
}
$model = "";
if(isset($Row[2])) {
$model = mysqli_real_escape_string($conn,$Row[2]);
}
$serial = "";
if(isset($Row[3])) {
$serial = mysqli_real_escape_string($conn,$Row[3]);
}
$freight = "";
if(isset($Row[4])) {
$freight = mysqli_real_escape_string($conn,$Row[4]);
}
$depreciation = "";
if(isset($Row[5])) {
$depreciation = mysqli_real_escape_string($conn,$Row[5]);
}
$date_rec = "";
if(isset($Row[6])) {
$date_rec = mysqli_real_escape_string($conn,$Row[6]);
}
$raw_results = mysqli_query($conn,"SELECT serial FROM device_current_info
WHERE (`serial` = $serial)");
$results = mysqli_fetch_array($conn,$raw_results);
if($results > 0){
$type = "error";
$message = "Problem in Importing assets into the Database" .mysqli_error($conn);
}
else{
if (!empty($po) || !empty($model) || !empty($serial) || !empty($freight) || !empty($depreciation)|| !empty($date_rec) ) {
//Adds assets to the terminal_info table.
$query = "insert IGNORE into device_info(po,business,model,serial,freight,depreciation,date_rec) values('".$po."','".$business."','".$model."'
,'".$serial."','".$freight."','".$depreciation."','".$date_rec."')";
$result = mysqli_query($conn, $query)or die(mysqli_error($conn));
if (! empty($result)) {
$type = "success";
$message = "Assets added into the Database";
} else {
$type = "error";
$message = "Problem in Importing assets into the Database" .mysqli_error($conn);
}
}
if (!empty($po) || !empty($model) || !empty($serial) || !empty($freight) || !empty($depreciation)|| !empty($date_rec) ) {
//Adds terminals to the terminal_current_info table. Terminals will be linked on this table and only current info will be stored.
$currenLocation ="Stores"; //Default location for all new assets.
$newComment ="New asset"; //Default comments for all new assets.
$currentStatus = "Available";//Default status for all new assets.
$query2 = "insert IGNORE into device_current_info(business,model,serial,current_status,current_location,comments) values('".$business."','".$model."'
,'".$serial."','".$currentStatus."','".$currenLocation."','".$newComment."')";
$result2 = mysqli_query($conn, $query2) or die(mysqli_error($conn));
if (! empty($result)) {
$type = "success";
$message = "Assets added into the Database";
} else {
$type = "error";
$message = "Problem in Importing assets into the Database" .mysqli_error($conn);
}
}
if (!empty($po) || !empty($model) || !empty($serial) || !empty($freight) || !empty($depreciation)|| !empty($date_rec) ) {
//Creates first terminal movement. Every time a terminal is moved it this table will be updated.
$user = $_SESSION['login_user'];
$previousLocation ="Vendor"; //Default previoius location for all new assets.
$movementLocation ="Stores"; //Default location for all new assets.
$movementComment ="New asset"; //Default comments for all new assets.
$movementStatus ="Available"; //Default status for all new assets.
$query3 = "insert IGNORE into device_movements(serial,previous_location,movement_location,user,status,comments) values(
'".$serial."','".$previousLocation."','".$movementLocation."','".$user."','".$movementStatus."','".$movementComment."')";
$result3 = mysqli_query($conn, $query3) or die(mysqli_error($conn));
$query4 = "insert into activity_log(user_name,activity,old_value,new_value) values(
'".$user."','Added','','".$serial."')";
$result4 = mysqli_query($conn, $query4) or die(mysqli_error($conn));
if (! empty($result)) {
$type = "success";
$message = "Assets added into the Database";
} else {
$type = "error";
$message = "Problem in Importing assets into the Database" .mysqli_error($conn);
}
}
}
}
}
}
}
else
{
$type = "error";
$message = "Invalid File Type. Upload Excel File.";
}
?>
最佳答案
如果您使用 SpreadSheet-Plugin 将数据传输到 csv 文件,您可能会提高速度。然后,您可以使用带有 LOAD DATA LOCAL INFILE
的 mysql 导入 csv 文件。 (参见 MySQL Doku)
这个 MySQL 函数非常非常(是的,非常)快,因此其余部分将取决于您的电子表格插件的速度。
当然,这与其说是一种解决方案,不如说是一种新方法。
关于php - 向mysql数据库添加数据时无法访问网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54823108/
我有这个网站,这个特定页面是安全的,但是当它回发时,它回发到一个不安全的页面。如何解决? 我正在使用 ASP.NET 向导。我有这个页面 - checkout.aspx,页面包含这个控件 checko
我有 2 个 azure 网站 - 两个独立的项目 我现在有 2 个网址: myazurewebsite.azurewebsites.net myazureblog.azurewebsites.net
我有 2 个 azure 网站 - 两个独立的项目 我现在有 2 个网址: myazurewebsite.azurewebsites.net myazureblog.azurewebsites.net
环境: 旧网站: React 托管在 Heroku URL( http://sameurl.com ) 新网站: Java 托管在 Heroku URL ( http://sameurl.com )
我已在 Windows Azure 上注册了一个测试帐户来对其进行测试。我构建了一个 Hello world ASP.NET Web 应用程序 + 数据库只是为了测试。 我安装了 Visual Stu
我有一个可以收集和显示各种测量值的产品(不会详细介绍)。正如人们所期望的那样,显示部分是一个数据库+建立在其之上的网站(使用 Symfony)。 但是,我们可能还会创建一个 API 来向第三方公开数据
这个问题在这里已经有了答案: Software keyboard resizes background image on Android (16 个答案) 关闭 8 年前。 我有一个类似的问题:So
这个问题似乎很常见,但我真的无法根据现有答案解决问题。 我有一个简单的 maven 项目,没有任何复杂的部署配置等,并且想在点击“mvn site”时生成一个 Maven CheckStyle 报告。
有没有人看过有关何时进行横向扩展与纵向扩展的最佳选择的任何分析或信息。什么时候一个比另一个更有意义。 目前,在标准模式和基本模式下,2 个小型实例的费用与 1 个中型实例的费用相同。 拥有 2 个小型
有没有办法找到 azure 网站何时停止? (我通过门户网站停止了网站,但我不记得是什么时候......) 我正在寻找一些日志,但没有找到任何有用的内容。 谢谢。 最佳答案 您拥有的最接近的是 azu
我目前在 Azure VM 的 IIS 中拥有一个网站。我已将该站点复制到 2 个可用区域中的 2 个虚拟机上。 这可以保护网站免遭停机。 我需要为高负载时刻实现一些可扩展性。这似乎就是创建音阶集的目
我有一个托管在 Azure 上的网站 ( http://mike-ward.azurewebsites.net/ )。我从 Azure 门户设置了一个指向(引用?)我的网站的 Azure CDN。根据
我有一个 Azure 网站(不是 Web 角色),有 2 个槽:生产和暂存。 我只想为生产插槽启用 CDN,而不是为登台启用,问题是我找不到识别主机插槽的方法。 RoleEnvironment 不可用
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提出有关书籍、工具、软件库等建议的问题。您可以编辑问题,以便可以用事实和引用来回答它。 4年前关
我们正在考虑将一些网站从 Azure 云服务迁移到 Azure 网站(事情似乎就是这样进行的)。显然,我们被明确告知云服务不会保留文件系统状态,因为它们会在机器故障时重新部署。 我假设网站是基于 Bl
我有一个 Azure 网站,需要使用在 VM 上运行的 Elasticsearch 服务。 虽然我需要能够锁定对 Elasticsearch 的访问,以便只有 Azure 网站可以访问它,但我似乎无法
我有一个 azure 网站,位于 yis3.azurewebsites.net - 我已将其提升为“共享”网站,以便我可以使用自定义域。我拥有从 123-reg.co.uk 购买的域名 yorkshi
我正在使用 abcPDF 动态创建 PDF。 我想保存这些 PDF,以便客户随时检索。最简单的方法(也是我现在在当前服务器上所做的方法)是将完成的 PDF 保存到文件系统。 看来我一直坚持使用 blo
我们正在尝试了解 Windows Azure 管理 API 为 Azure 网站(而非 Webroles)返回的监控数据的复杂性 例如,下图描述了为 CPUTime 检索的数据点。它似乎表明,在晚上
看起来真的很愚蠢,因为我找不到它: 门户网站似乎不太直观,我如何为一个“网站”付费并在其中运行最多 500 个网站?我想当我通过单击左下角的加号添加“网站”时,我添加了整个虚拟机而不是子站点。如何仅添
我是一名优秀的程序员,十分优秀!