我们在做大数据量网站的时候,有时遇到原始数据量过大的情况,如果都做成一个网站会让服务器负载过高、用户打开很慢,这时往往需要分为多个子网站来做,原始数据也需要进行分割,以便分别导入。 下面是将1个美国数据文件分割为50个各州数据文件的例子usa2sta
我们在做大数据量网站的时候,有时遇到原始数据量过大的情况,如果都做成一个网站会让服务器负载过高、用户打开很慢,这时往往需要分为多个子网站来做,原始数据也需要进行分割,以便分别导入。
下面是将1个美国数据文件分割为50个各州数据文件的例子usa2state.php:
<?php //程序开头注释部分开始 /* usa.tsv分割为各州.tsv */ //程序开头注释部分结束 $file_usa="usa.tsv";//需要分割的整个美国文件 $file_ak="ak.tsv";//分割到各个州文件 $file_al="al.tsv"; $file_ar="ar.tsv"; $file_az="az.tsv"; $file_ca="ca.tsv"; $file_co="co.tsv"; $file_ct="ct.tsv"; $file_dc="dc.tsv"; $file_de="de.tsv"; $file_fl="fl.tsv"; $file_ga="ga.tsv"; $file_hi="hi.tsv"; $file_ia="ia.tsv"; $file_id="id.tsv"; $file_il="il.tsv"; $file_in="in.tsv"; $file_ks="ks.tsv"; $file_ky="ky.tsv"; $file_la="la.tsv"; $file_ma="ma.tsv"; $file_md="md.tsv"; $file_me="me.tsv"; $file_mi="mi.tsv"; $file_mn="mn.tsv"; $file_mo="mo.tsv"; $file_ms="ms.tsv"; $file_mt="mt.tsv"; $file_nc="nc.tsv"; $file_nd="nd.tsv"; $file_ne="ne.tsv"; $file_nh="nh.tsv"; $file_nj="nj.tsv"; $file_nm="nm.tsv"; $file_nv="nv.tsv"; $file_ny="ny.tsv"; $file_oh="oh.tsv"; $file_ok="ok.tsv"; $file_or="or.tsv"; $file_pa="pa.tsv"; $file_ri="ri.tsv"; $file_sc="sc.tsv"; $file_sd="sd.tsv"; $file_tn="tn.tsv"; $file_tx="tx.tsv"; $file_ut="ut.tsv"; $file_va="va.tsv"; $file_vt="vt.tsv"; $file_wa="wa.tsv"; $file_wi="wi.tsv"; $file_wv="wv.tsv"; $file_wy="wy.tsv"; $file_others="others.tsv";//51个州以外的数据 $fp_usa=fopen($file_usa,"r");//以只读的方式打开文件 $fp_ak=fopen($file_ak,"w");//以只写的方式打开文件 $fp_al=fopen($file_al,"w"); $fp_ar=fopen($file_ar,"w"); $fp_az=fopen($file_az,"w"); $fp_ca=fopen($file_ca,"w"); $fp_co=fopen($file_co,"w"); $fp_ct=fopen($file_ct,"w"); $fp_dc=fopen($file_dc,"w"); $fp_de=fopen($file_de,"w"); $fp_fl=fopen($file_fl,"w"); $fp_ga=fopen($file_ga,"w"); $fp_hi=fopen($file_hi,"w"); $fp_ia=fopen($file_ia,"w"); $fp_id=fopen($file_id,"w"); $fp_il=fopen($file_il,"w"); $fp_in=fopen($file_in,"w"); $fp_ks=fopen($file_ks,"w"); $fp_ky=fopen($file_ky,"w"); $fp_la=fopen($file_la,"w"); $fp_ma=fopen($file_ma,"w"); $fp_md=fopen($file_md,"w"); $fp_me=fopen($file_me,"w"); $fp_mi=fopen($file_mi,"w"); $fp_mn=fopen($file_mn,"w"); $fp_mo=fopen($file_mo,"w"); $fp_ms=fopen($file_ms,"w"); $fp_mt=fopen($file_mt,"w"); $fp_nc=fopen($file_nc,"w"); $fp_nd=fopen($file_nd,"w"); $fp_ne=fopen($file_ne,"w"); $fp_nh=fopen($file_nh,"w"); $fp_nj=fopen($file_nj,"w"); $fp_nm=fopen($file_nm,"w"); $fp_nv=fopen($file_nv,"w"); $fp_ny=fopen($file_ny,"w"); $fp_oh=fopen($file_oh,"w"); $fp_ok=fopen($file_ok,"w"); $fp_or=fopen($file_or,"w"); $fp_pa=fopen($file_pa,"w"); $fp_ri=fopen($file_ri,"w"); $fp_sc=fopen($file_sc,"w"); $fp_sd=fopen($file_sd,"w"); $fp_tn=fopen($file_tn,"w"); $fp_tx=fopen($file_tx,"w"); $fp_ut=fopen($file_ut,"w"); $fp_va=fopen($file_va,"w"); $fp_vt=fopen($file_vt,"w"); $fp_wa=fopen($file_wa,"w"); $fp_wi=fopen($file_wi,"w"); $fp_wv=fopen($file_wv,"w"); $fp_wy=fopen($file_wy,"w"); $fp_others=fopen($file_others,"w"); $count_line=0; while(!(feof($fp_usa))) { $line_array=fgetcsv($fp_usa,0,"\t",chr(0));//读取文件的一行 $state=strtolower($line_array[10]);//读取其中州的代码 switch ($state) {//分别写到对应的州文件 case "ak": fputs($fp_ak, implode($line_array,"\t")."\n"); break; case "al": fputs($fp_al, implode($line_array,"\t")."\n"); break; case "ar": fputs($fp_ar, implode($line_array,"\t")."\n"); break; case "az": fputs($fp_az, implode($line_array,"\t")."\n"); break; case "ca": fputs($fp_ca, implode($line_array,"\t")."\n"); break; case "co": fputs($fp_co, implode($line_array,"\t")."\n"); break; case "ct": fputs($fp_ct, implode($line_array,"\t")."\n"); break; case "dc": fputs($fp_dc, implode($line_array,"\t")."\n"); break; case "de": fputs($fp_de, implode($line_array,"\t")."\n"); break; case "fl": fputs($fp_fl, implode($line_array,"\t")."\n"); break; case "ga": fputs($fp_ga, implode($line_array,"\t")."\n"); break; case "hi": fputs($fp_hi, implode($line_array,"\t")."\n"); break; case "ia": fputs($fp_ia, implode($line_array,"\t")."\n"); break; case "id": fputs($fp_id, implode($line_array,"\t")."\n"); break; case "il": fputs($fp_il, implode($line_array,"\t")."\n"); break; case "in": fputs($fp_in, implode($line_array,"\t")."\n"); break; case "ks": fputs($fp_ks, implode($line_array,"\t")."\n"); break; case "ky": fputs($fp_ky, implode($line_array,"\t")."\n"); break; case "la": fputs($fp_la, implode($line_array,"\t")."\n"); break; case "ma": fputs($fp_ma, implode($line_array,"\t")."\n"); break; case "md": fputs($fp_md, implode($line_array,"\t")."\n"); break; case "me": fputs($fp_me, implode($line_array,"\t")."\n"); break; case "mi": fputs($fp_mi, implode($line_array,"\t")."\n"); break; case "mn": fputs($fp_mn, implode($line_array,"\t")."\n"); break; case "mo": fputs($fp_mo, implode($line_array,"\t")."\n"); break; case "ms": fputs($fp_ms, implode($line_array,"\t")."\n"); break; case "mt": fputs($fp_mt, implode($line_array,"\t")."\n"); break; case "nc": fputs($fp_nc, implode($line_array,"\t")."\n"); break; case "nd": fputs($fp_nd, implode($line_array,"\t")."\n"); break; case "ne": fputs($fp_ne, implode($line_array,"\t")."\n"); break; case "nh": fputs($fp_nh, implode($line_array,"\t")."\n"); break; case "nj": fputs($fp_nj, implode($line_array,"\t")."\n"); break; case "nm": fputs($fp_nm, implode($line_array,"\t")."\n"); break; case "nv": fputs($fp_nv, implode($line_array,"\t")."\n"); break; case "ny": fputs($fp_ny, implode($line_array,"\t")."\n"); break; case "oh": fputs($fp_oh, implode($line_array,"\t")."\n"); break; case "ok": fputs($fp_ok, implode($line_array,"\t")."\n"); break; case "or": fputs($fp_or, implode($line_array,"\t")."\n"); break; case "pa": fputs($fp_pa, implode($line_array,"\t")."\n"); break; case "ri": fputs($fp_ri, implode($line_array,"\t")."\n"); break; case "sc": fputs($fp_sc, implode($line_array,"\t")."\n"); break; case "sd": fputs($fp_sd, implode($line_array,"\t")."\n"); break; case "tn": fputs($fp_tn, implode($line_array,"\t")."\n"); break; case "tx": fputs($fp_tx, implode($line_array,"\t")."\n"); break; case "ut": fputs($fp_ut, implode($line_array,"\t")."\n"); break; case "va": fputs($fp_va, implode($line_array,"\t")."\n"); break; case "vt": fputs($fp_vt, implode($line_array,"\t")."\n"); break; case "wa": fputs($fp_wa, implode($line_array,"\t")."\n"); break; case "wi": fputs($fp_wi, implode($line_array,"\t")."\n"); break; case "wv": fputs($fp_wv, implode($line_array,"\t")."\n"); break; case "wy": fputs($fp_wy, implode($line_array,"\t")."\n"); break; default: fputs($fp_others, implode($line_array,"\t")."\n"); } $count_line++; print "\n$count_line : $state\n"; //print_r ($line_array); //if ($count_line>=3) exit; } print "total=$count_line\n"; fclose($fp_usa); fclose($fp_ak); fclose($fp_al); fclose($fp_ar); fclose($fp_az); fclose($fp_ca); fclose($fp_co); fclose($fp_ct); fclose($fp_dc); fclose($fp_de); fclose($fp_fl); fclose($fp_ga); fclose($fp_hi); fclose($fp_ia); fclose($fp_id); fclose($fp_il); fclose($fp_in); fclose($fp_ks); fclose($fp_ky); fclose($fp_la); fclose($fp_ma); fclose($fp_md); fclose($fp_me); fclose($fp_mi); fclose($fp_mn); fclose($fp_mo); fclose($fp_ms); fclose($fp_mt); fclose($fp_nc); fclose($fp_nd); fclose($fp_ne); fclose($fp_nh); fclose($fp_nj); fclose($fp_nm); fclose($fp_nv); fclose($fp_ny); fclose($fp_oh); fclose($fp_ok); fclose($fp_or); fclose($fp_pa); fclose($fp_ri); fclose($fp_sc); fclose($fp_sd); fclose($fp_tn); fclose($fp_tx); fclose($fp_ut); fclose($fp_va); fclose($fp_vt); fclose($fp_wa); fclose($fp_wi); fclose($fp_wv); fclose($fp_wy); fclose($fp_others); ?>
?
自由标签:
- 文件
- PHP
原文地址:大文本文件分割成若干小文件的PHP程序, 感谢原作者分享。

winreagent是在系统更新或升级的过程中创建的文件夹;该文件夹中通常包含临时文件,当更新或升级失败时,系统将通过还原先前创建的临时文件来回滚到执行更新或升级过程之前的版本。

baidunetdiskdownload是百度网盘默认下载文件的文件夹;百度网盘是百度推出的一项云存储服务,只要下载东西到百度网盘里,都会默认保存到这个文件夹中,并且可跨终端随时随地查看和分享。

本教程向您展示了如何在Windows的Chrome或Edge中找到所有打开的标签页上的特定文本或短语。有没有办法在Chrome中所有打开的标签页上进行文本搜索?是的,您可以使用Chrome中的免费外部Web扩展在所有打开的标签上执行文本搜索,无需手动切换标签。一些扩展如TabSearch和Ctrl-FPlus可以帮助您轻松实现这一功能。如何在GoogleChrome的所有选项卡中搜索文本?Ctrl-FPlus是一个免费的扩展,它方便用户在浏览器窗口的所有选项卡中搜索特定的单词、短语或文本。这个扩

在iOS17中,Apple彻底改变了其全部铃声和文本音调选择,提供了20多种可用于电话、短信、闹钟等的新声音。以下是查看它们的方法。与旧铃声相比,许多新铃声的长度更长,听起来更现代。它们包括琶音、破碎、树冠、小木屋、啁啾、黎明、出发、多洛普、旅程、水壶、水星、银河系、四边形、径向、清道夫、幼苗、庇护所、洒水、台阶、故事时间、戏弄、倾斜、展开和山谷。反射仍然是默认铃声选项。还有10多种新的文本提示音可用于传入短信、语音邮件、传入邮件警报、提醒警报等。要访问新的铃声和文本铃声,首先,请确保您的iPh

1、文本任务这篇文章主要讨论的是生成式文本摘要的方法,如何利用对比学习和大模型实现最新的生成式文本摘要训练范式。主要涉及两篇文章,一篇是BRIO:BringingOrdertoAbstractiveSummarization(2022),利用对比学习在生成模型中引入ranking任务;另一篇是OnLearningtoSummarizewithLargeLanguageModelsasReferences(2023),在BRIO基础上进一步引入大模型生成高质量训练数据。2、生成式文本摘要训练方法和

win7系统无法打开txt文本怎么办?我们电脑中需要进行文本文件的编辑时,最简单的方式就是去使用文本工具。但是有的用户却发现自己的电脑无法打开txt文本文件了,那么这样的问题要怎么去解决呢?一起来看看详细的解决win7系统无法打开txt文本教程吧。解决win7系统无法打开txt文本教程 1、在桌面上右键点击桌面的任意一个txt文件,如果没有的可以右键点击新建一个文本文档,然后选择属性,如下图所示: 2、在打开的txt属性窗口中,常规选项下找到更改按钮,如下图所示: 3、在弹出的打开方式设置

说起「杀猪盘」,大家肯定都恨得牙痒痒。在这类交友婚恋类网络诈骗中,骗子会提前物色好容易上钩的受害者,而她们,往往是单纯善良、对爱情怀有美好幻想的高知乖乖女。而为了能和这些骗子大战500回合,B站大名鼎鼎的科技圈up主「图灵的猫」训练了一个聊起天来频出爆梗,甚至比真人还6的AI。结果,随着AI的一通操作,骗子竟然被这个以假乱真的小姐姐搞得方寸大乱,直接给「她」转了520。更好笑的是,发现根本无机可乘的骗子,最后不仅自己破了防,还被AI附送一段「名句」:视频一出,立刻爆火,在B站冲浪的小伙伴们纷纷被

下载带有文本操作的新截图工具尽管新的截图工具仅限于开发和金丝雀版本,但如果您不想等待,可以立即安装更新的Windows11截图工具(版本号11.2308.33.0)。这是如何工作的:1.继续在您的WindowsPC上打开此网站(访问)。2.接下来,选择“产品ID”并将“9MZ95KL8MR0L”粘贴到文本字段中。3.从右侧下拉菜单切换到“快速”环,然后单击搜索。4.现在,在出现的搜索结果中查找此版本“2022.2308.33.0”。5.右键单击具有MSIXBUNDLE扩展名的那个,然后在上下文菜


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
