


Teach you step by step how to do keyword matching projects (search engines)----The sixth day, teach you how to do----
The sixth day
After Xiao Shuai Shuai had a rest on Friday, he was probably too energetic. He went out for a party in two days on the weekend. He drank so much that he forgot an important thing.
Refit on Monday and go to the battlefield.
As soon as he came to the company, Xiao Shuaishuai finally remembered what he had to do and couldn’t wait to compile the meeting report (work summary).
1. Last week’s work tasks:
1) Submit keywords to the keyword database on the page
2) Import the file into the keyword dictionary
3) Automatically capture key words from the keyword database
2. Improvement of abilities
1) Learned how to read csv files
2) Learned curl
3) Learned Html Dom parse
3. Work tasks for next week:
1) Understand the application of keyword thesaurus
As soon as I wrote this, the alarm bell for the meeting came. Xiao Shuaishuai hurried to the conference room with the meeting report paper in his arms.
After 3 hours of verbal melee, the meeting finally ended.
Xiao Shuai Shuai was forced to take on the following tasks. Why did Xiao Shuai Shuai not arrange the plan well?
1. Learn how to use Taobao’s API and obtain product information based on Taobao’s API.
2. Match appropriate keywords according to the attributes of the baby.
3. Continue to follow up on the subsequent task of expanding the keyword database and organize and categorize it.
After the meeting, Boss Yu found Xiao Shuaishuai in private while smoking. Boss Yu asked Xiao Shuaishuai about the situation and said: You did a great job in the tasks last week. If you can summarize these tasks, To sum up, it would be perfect to describe it with a picture that everyone can understand.
Xiao Shuaishuai was very excited when he heard this: Picture...uh...flow chart?
Boss Yu said patiently: In addition to flow charts, there are many diagrams, such as: data flow diagrams, UML diagrams... (Speaking of these, Boss Yu couldn't stop, and Xiao Shuai Shuai was confused. )
When the smoke went out, Xiao Shuaishuai couldn't hold on anymore, so he interrupted Boss Yu's boastful talk and said: Uh... Boss Yu, what kind of picture do you recommend to use to express this summary?
Boss Yu had to stop boasting and coughing to break the embarrassment. He patted Xiao Shuai Shuai on the shoulder and said affectionately: Xiao Shuai Shuai, please go and understand firstData flow diagram, UML diagram , it actually doesn’t matter what diagram you use, as long as it can convey your thoughts...
Little Shuaishuai stared at him with his mouth gagged, as if he had an egg stuffed in his mouth. In my heart, I silently despised Boss Yu.
Data flow diagram: referred to as DFD, which graphically expresses the logical functions of the system, the logical flow of data within the system, and the logical transformation process from the perspective of data transmission and processing. It is a structured system The main expression tool for analysis methods and a graphical method used to represent software models [from Baidu entry]
UML diagram: UML (abbreviation for Unified Modeling Language) Unified Modeling Language is a language used for visual modeling of software-intensive systems. UML is a standard language for describing, visualizing, and documenting products of object-oriented development systems. Unified Modeling Language (UML) is a non-proprietary third-generation modeling and specification language. UML is an open method for specifying, visualizing, building and writing the artifacts of an object-oriented software-intensive system during the development phase. UML demonstrates a series of best engineering practices that have been proven effective in modeling large-scale, complex systems, especially at the software architecture level. UML was adopted by OMG as an industry standard. UML is most suitable for data modeling, business modeling, object modeling, and component modeling. [From Baidu entry]
When Xiao Shuaishuai went to sort out this picture, Boss Yu had already drawn these pictures in his notebook. In fact, he wanted Xiao Shuai Shuai to get in touch with the knowledge of software design.
Xiao Shuaishuai’s ideas are inconsistent. As soon as he hears about new technical knowledge, he can’t wait to get in touch with it and learn from it.
In this way, Xiao Shuaishuai finally read the concepts of data flow diagrams and UML diagrams over and over again. He may be able to memorize them, but he still cannot draw such a diagram.
When Xiao Shuaishuai was dejected and went to see Boss Yu, Boss Yu showed him the compiled pictures and codes and felt shocked. It turned out that this was the gap...
Original manuscript by Boss Yu:
<?<span>php </span><span>class</span><span> Keyword { </span><span>public</span> <span>$word</span><span>; </span><span>public</span> <span>static</span> <span>$conn</span> = <span>null</span><span>; </span><span>public</span> <span>function</span><span> getDbConn(){ </span><span>if</span>(self::<span>$conn</span> == <span>null</span><span>){ self</span>::<span>$conn</span> = <span>mysql_connect</span>(DATABASE_HOST,DATABASE_USER,<span>DATABASE__PASSWORD); </span><span>mysql_query</span>("SET NAMES '".DATABASE_CHARSET."'",self::<span>$conn</span><span>); </span><span>mysql_select_db</span>("dict",self::<span>$conn</span><span>); </span><span>return</span> self::<span>$conn</span><span>; } </span><span>return</span> self::<span>$conn</span><span>; } </span><span>public</span> <span>function</span><span> save(){ </span><span>$sql</span> = "insert into keywords(word) values ('<span>$this</span>->word')"<span>; </span><span>return</span> <span>mysql_query</span>(<span>$sql</span>,<span>$this</span>-><span>getDbConn()); } } </span><span>class</span><span> Source { </span><span>public</span> <span>$keywords</span><span>; </span><span>public</span> <span>function</span><span> run() { </span><span>foreach</span> (<span>$this</span>->keywords <span>as</span> <span>$word</span><span>) { </span><span>#</span><span> code...</span> <span>$keyword</span> = <span>new</span><span> Keyword(); </span><span>$keyword</span>->word = <span>$word</span><span>; </span><span>$keyword</span>-><span>save(); } } } </span><span>class</span> InputSource <span>extends</span><span> Source { </span><span>public</span> <span>function</span><span> __construct(){ </span><span>$this</span>->keywords = <span>$_REQUEST</span>["keywords"<span>]; } } </span><span>class</span> FileSource <span>extends</span><span> Source { </span><span>public</span> <span>function</span> __construct(<span>$filename</span><span>){ </span><span>$file</span> = <span>fopen</span>(<span>$filename</span>,'r'<span>); </span><span>while</span> (<span>$data</span> = <span>fgetcsv</span>(<span>$file</span><span>)) { </span><span>$this</span>->keywords[] = <span>$data</span><span>; } </span><span>fclose</span>(<span>$file</span><span>); } } </span><span>class</span> TaobaoHotsSource <span>extends</span><span> Source { </span><span>public</span> <span>function</span><span> __construct() { </span><span>#</span><span> code...</span> <span>$curl</span> = <span>new</span><span> ExtendedCurl(); </span><span>$content</span> = <span>$curl</span>->get("http://www.taobao.com"<span>); </span><span>if</span>(<span>$curl</span>-><span>hasError()){ </span><span>throw</span> <span>new</span> <span>Exception</span>(<span>$curl</span>->getError(), <span>$curl</span>-><span>getHttpCode()); } </span><span>$html</span> = str_get_html(<span>$content</span><span>); </span><span>foreach</span>(<span>$html</span>->find(".search-hots a[class!=more]") <span>as</span> <span>$ele</span><span>){ </span><span>$this</span>->keywords[] = <span>$ele</span>-><span>innertext; } } }</span>
Xiao ShuaiShuai had no choice but to use the wooden sword to fight monsters and upgrade. The level of this boss was too high, and Xiao ShuaiShuai couldn't resist it.
Xiao Shuai Shuai’s Q spirit is still very good. He firmly believes that one day he will become a Boss and let other newcomers challenge him.
Everyone has a good deck of cards in their life, but it is a pity that many people waste it. They have a deck of rich cards in their hands, but they make themselves poor.
Many people’s souls are stained with the dust of negativity, the sludge of disappointment, thoughts of poverty and backwardness, and even the seeds of resentment, so you will never be happy or rich. Poor people: Is there any secret to getting rich and doing business?
Rich man: Everything has its own internal laws. The so-called secret is actually just a little bit of it.
Ninety-nine degrees plus one degree, the water will boil. The difference between boiling water and warm water is this degree. The reason why some things are so different is often because of this trivial degree. I saw such a thing in the newspaper.
Two laid-off female workers each opened a breakfast shop on the roadside, selling steamed buns and camellia oleifera. One business gradually prospered, and the other closed the stall after 30 days. It is said that the reason was an egg problem.
Whenever a customer comes to the business that is gradually booming, they always ask if they want to beat one egg or two eggs in the oil tea; the one that is failing asks if they want it. Two different questions will always make the first house sell more eggs. The more eggs you sell, the greater the profit will be, and you can afford to pay all the expenses, and the business will continue. Those who sell fewer eggs will make less profit. After removing the expenses, they will not make any money, so the stall has to be closed down. The difference between success and failure is just one egg.
Ninety-nine percent of the world-famous Coca-Cola is water, sugar, carbonic acid and *, and the composition of all beverages in the world is probably the same. However, there is 1% of things in Coca-Cola that others absolutely have. It is said that it is this mysterious 1% that makes it have a net profit of more than 400 million U.S. dollars every year, while other brands of drinks are satisfied with an annual income of 80 million U.S. dollars.
In this world, the distance between success and failure is only a little bit, and the so-called secret is only this little bit, but this little thing is the most precious, and many people have to spend many failures to get it back. , and then move towards success. Poor person: If you know the secret of a certain business, will it be easier to succeed in this project?
Rich man: All businesses have their own little secrets. No one will tell others this little secret, because some of them cannot be put on the table. In addition, they are afraid that others will learn from them, so they all list them. Incorporated into the ancestral secret recipe. A friend from that clinic told me that in order for a clinic to make money, in principle: first, it must be cheap, and second, it must be effective. But if you follow this principle to the letter, you won’t make any money. Since it's cheap, you can't charge too high. If it's effective, you can treat the disease once. In this way, there will be very little money left except for the management of the administrative department, rent, employee wages, and various social charges... It's better to save money early. close the door. Whatever industry you want to engage in, you must first make friends with people who are engaged in this industry or work with them as employees. If you work hard, you can learn this ancestral secret recipe. This is much more cost-effective than losing a lot of time and slowly exploring in practice.
The small boss does things, the middle boss makes the market, and the big boss makes the momentum!
Many of us make money with physical strength, many of us make money with technology, few of us make money with knowledge, and very few of us make money with wisdom. In the age of wealth, there are too few smart people, and those who are smart and can seize business opportunities are even rarer. As long as we use our brains and wisdom, we can seize the opportunity and become the master of wealth.
Okay, give me the red flag,

explorer.exe是什么进程在我们使用Windows操作系统的时候,经常会听到一个名词"explorer.exe".那么,你是否好奇这个进程到底是什么?在本文中,我们将详细解释explorer.exe是什么进程以及其功能和作用。首先,explorer.exe是Windows操作系统的一个关键进程,它负责管理和控制Windows资源管理器(Window

10月29日,AMD终于发布了备受用户期待的重磅产品,即基于全新RDNA2架构的RX6000系列游戏显卡。这款显卡与之前推出的基于全新ZEN3架构的锐龙5000系列处理器相辅相成,形成了一个全新的双A组合。这一次的发布不仅使得竞争对手“双英”黯然失色,也对整个DIY硬件圈产生了重大影响。接下来,围绕笔者手中这套AMD锐龙5600X和RX6800XT的组合作为测试例子,来见证下现如今的AMD究竟有多么Yse?首先说说CPU处理器部分,上一代采用ZEN2架构的AMD锐龙3000系列处理器其实已经令用

0x0000004e是什么故障在计算机系统中,故障是一个常见的问题。当计算机遇到故障时,系统通常会因为无法正常运行而出现停机、崩溃或者出现错误提示。而在Windows系统中,有一个特定的故障代码0x0000004e,这是一个蓝屏错误代码,表示系统遇到了一个严重的错误。0x0000004e蓝屏错误是由于系统内核或驱动程序问题导致的。这种错误通常会导致计算机系统

内存是计算机中非常重要的组件之一,它对计算机的性能和稳定性有着重要影响。在选择内存时,人们往往会关注两个重要的参数,即时序和频率。那么,对于内存性能来说,时序和频率哪个更重要呢?首先,我们来了解一下时序和频率的概念。时序指的是内存芯片在接收和处理数据时所需的时间间隔。它通常以CL值(CASLatency)来表示,CL值越小,内存的处理速度越快。而频率则是内

Apple在周二推出了iOS17.4更新,为iPhone带来了一系列新功能和修复。这次更新包括了全新的表情符号,同时欧盟用户也能够下载其他应用商店。此外,更新还加强了对iPhone安全性的控制,引入了更多的「失窃设备保护」设置选项,为用户提供更多选择和保障。"iOS17.3首次引入了“失窃设备保护”功能,为用户的敏感资料增加了额外的安全保障。当用户不在家等熟悉地点时,该功能要求用户首次输入生物特征信息,并在一小时后再次输入信息才能访问和更改某些数据,如修改AppleID密码或关闭失窃设备保护功能

大家知道MicrosoftEdge在哪设置显示下载按钮吗?下文小编就带来了MicrosoftEdge设置显示下载按钮的方法,希望对大家能够有所帮助,一起跟着小编来学习一下吧!第一步:首先打开MicrosoftEdge浏览器,单击右上角【...】标识,如下图所示。第二步:然后在弹出菜单中,单击【设置】,如下图所示。第三步:接着单击界面左侧【外观】,如下图所示。第四步:最后单击【显示下载按钮】右侧按钮,由灰变蓝即可,如下图所示。上面就是小编为大家带来的MicrosoftEdge在哪设置显示下载按钮的

免费的dll修复工具有哪些导语:随着电脑使用的频繁,有时我们可能会遇到一些dll文件损坏或丢失的问题,这会导致某些软件无法正常运行,给用户带来了很大的困扰。幸运的是,市面上有一些免费的dll修复工具可以帮助我们解决这个问题。本文将介绍几款常用的免费dll修复工具,并对其功能和特点进行分析。一、DLL-FilesFixerDLL-FilesFixer是一

前端ESM是什么,需要具体代码示例在前端开发中,ESM是指ECMAScriptModules,即基于ECMAScript规范的模块化开发方式。ESM带来了许多好处,比如更好的代码组织、模块间的隔离和可重用性等。本文将介绍ESM的基本概念和用法,并提供一些具体的代码示例。ESM的基本概念在ESM中,我们可以把代码分为多个模块,每个模块对外暴露一些接口供其他模


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

Atom editor mac version download
The most popular open source editor

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),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
