无基础自学php是否能找到靠谱的工作?
本人非计算机行业毕业1年,想投身做开发,目前正在自学php,刚会写自己的留言板。
身边有做java开发的朋友,认为虽然php易用好学,但我专业不对口,也没有实际工作经验,再怎么学也是闭门造车,只能做点小玩意。正规公司根本不会认可这样的简历,只能去小公司做网管类的职业。
这种情况下,如果想通过php找到起步的工作(至少要靠谱,有发展空间,可以进一步提升自己的技术),是不是真的完全没有机会?如果有,需要做到哪些事?
需不需要接受我朋友的建议,去上java培训班?
回复内容:
这个随便你,我觉得PHP已经很易学很基础了,选择一门易学的语言会给你的带来很大的信心,相比较难的语言,如果没有兴趣和毅力的支撑,恐怕学一半就学不下去了 哎,对于最近邀请我回答的有关PHP问题,我一般都会贴出我写的并不怎么完善的lamp开发技能表。http://blog.goody365.com/lamp/Lamp%E5%90%8E%E7%AB%AF%E5%BC%80%E5%8F%91%E6%8A%80%E8%83%BD%E8%A1%A8v0.html
每次这类问题都会有 @黄辉冯@安正超 等大神的回答,然后每次我都会在他们的答案楼下加盖一楼打广告。我好无耻对不对。逃。。。
等下,http://ycku.com上有php教程1-4季,我觉得吧,看完前三季要是都能照着做出一些东西来就可以试着找份工作了。 1. 去上PHP培训班也不错。
2. 信心+吃苦+坚持,就会成功,很多非计算机专业的造诣都很高。 能不能找到工作不取决于是否“零基础”,也不取决于是否“自学”,取决于你掌握它的程度,换句话说就是看你怎么学,喊口号喊N年肯定也不会,当然找不到工作。努力点一年也用不了基本就能干活了,再深入学习一下,肯定是没问题的。这与语言与基础没有关系。 给你点信心吧。我是学生物的,毕业后半年才开始学编程,一开始java,后来php。没有去过培训班,因为觉得培训班都是扯淡骗人的,真正优秀的人自学足以。现在毕业第三年,找了一份薪水不错的工作,工作语言是php和golang。 我是学习c预言的……的……初中狗14岁……
我学习还挺棒的,可是喜欢c预言,就不管什么,想学就学,我想过,哪怕学好c需要三年,到时候我就是17岁了,但是如果我不学,过一年,我还是会15岁,我就坚定了学了下去!
题主,加油,Follow Your Heart!
只要成果好,人家才不管你是不是自学的呢~ 同为自学PHP找到工作的人。就说一句,自学能力是程序员的核心竞争能力。 不用培训,视频网站上教学一大堆一大堆的。 我建议你学习PHP,我也是PHP专业的在校学生,即将毕业。我之前学过Java .NET,综合考虑还是PHP好,现在需求很大的。 我是网络技术专业的,主要方向就是网管(当然,是服务器机房的网管)。
编程方面的知识全部自学,刚开始也是留言板,然后写cms(兼职),之后就开始工作。
当你能够独立写cms的时候,基本上你就满足一份基础的工作要求了。
但是,php的很大问题就是要求低,起点低,你如果满足于在小公司混着一份微薄的薪金,那可能过了几年发现毫无提高。同时程序员不是一份混资历的工作,不是你工作得久就有话语权。工作时间长,压力大并不表示你的能力在提升,所以,小公司是OK的,但最好还是努力提高自己往大公司跳。

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

In PHP, you can effectively prevent CSRF attacks by using unpredictable tokens. Specific methods include: 1. Generate and embed CSRF tokens in the form; 2. Verify the validity of the token when processing the request.

In PHP8, match expressions are a new control structure that returns different results based on the value of the expression. 1) It is similar to a switch statement, but returns a value instead of an execution statement block. 2) The match expression is strictly compared (===), which improves security. 3) It avoids possible break omissions in switch statements and enhances the simplicity and readability of the code.
