Home Backend Development PHP Tutorial 分享西西弗斯自动求职系统_PHP

分享西西弗斯自动求职系统_PHP

Jun 01, 2016 pm 12:21 PM

做这个系统的背景是前段时间帮女朋友找工作,大家也许都有过这样的感受,发出一份份简历都石沉大海,为什么呢?经过测试,我发现是因为邮件的阅读率并不高,也就是说你发出的大多数简历别人看都没有看过,更不用说约你面试了。

怎么办呢?只能靠一种战术----海量求职,就像一个笑话说,一个妻子问他老公当年为什么选择了她,他老公说,因为当初他给班里每一位女生都写了一封情书,只有你回…。.哈哈,海量战术,也是有效果滴…

言转正转,如何通过php做自动求职系统呢?总结来说就是两个步骤,第一:寻找工作源并采集职位,公司email入库;第二,调用smtp服务发送你的简历。

工作源,我发现一个很有用的东东,google生活,那里有大量的工作信息,然后就进入采集阶段了。采集相信大多数人都已经很熟悉了,进入google生活,搜你的工作职位,然后把url取出,做为采集入口,然后写好列表页的规则,关键代码一: preg_match_all("/(.*?)/", $item, $itemmatch);这个可以获取标题和详细页的url,然后再根据详细页的url进去取详细页的内容,然后通过mail正则匹配取到email地址。并将标题和email地址同时入库,以待后用。

接着进入邮件发送阶段,你可以自己配个smtp服务器,也可以用sina,tom等邮箱的smtp服务,但是注意一般都会有限制,所以你的程序执行一个后要sleep一下,休息个几分钟吧,以免被封ip,邮件发送时可以发送html格式的文本,然后还可以配置己读回复,这样别人看了你的简历,会有一个回执,这样就更知己知彼了。这个程序我已经写成了一个比较完善的系统,放在我的西西弗斯工作室(www.beijingjianzhan.com北京建站)里,可以提供给广大的求职者,只需要付一点点劳动费就行,哈哈,当然也可以加我的QQ376504340(个人网站:www.xxfsw.com)进行技术交流。

话说用这套系统给女朋友找工作,第一天刚写完系统,夜晚睡觉时就让电脑开着自己跑程序,整整跑了一晚上,发了几百份简历,果然效果来了。.电话源源不断地打进来…哎,一个字,骄傲啊!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

See all articles