写个日记吧。解决方案
写个日记吧。
今天是2009年最后一天,我却没有过公司的试用期,试用期一个月是做一些php题目,老大说我基础太薄弱,不太适合这个岗位,
回想起来,一个月的时间过的也很快,以前没做过php但是对于并不是很难的题目我却没有做好它,心里真不是滋味。因该好好看清楚自己的心态吧,毕业1年多了,被骗去做过大半年的传销,现在试用期又没过,心里真的好难受。今天把这个心情写下来,我要好好对待将来,我相信通过自己努力,将来会好起来!
------解决方案--------------------
慢慢来,别说自己不会!~~好好干,能做一分,做好三分。就是牛人。
------解决方案--------------------
努力
再说,也不一定非要当程序员
扬长避短
自己的优势在哪里,就往哪里发展。
------解决方案--------------------
不要那么灰心 加油
我现在也好不了哪里去
我们一起加油 努力
好好做好自己该做的事就是最好的
------解决方案--------------------
放好心态努力吧。。。
支持。。。。
------解决方案--------------------
加油!!2010年的很多机会等着你去努力
------解决方案--------------------
理解lz 我也有相同的经历 不过我比较幸运 在那里面没做那么长时间 20多天就出来了 之后就从新开始找工作了 工作一个月被被炒了,然后又找了个 现在还在试用期 努力努力 楼主加油
------解决方案--------------------
加油呀,心的旅途在等着你呢,阳光照着你。
------解决方案--------------------
祝一切平安
------解决方案--------------------
lz,我们交个朋友吧!你的经历和我相仿,我们一起努力吧,我的QQ是:531496541,验证里面填 PHP就可以了。。
------解决方案--------------------
LZ加油
------解决方案--------------------
加油加油
------解决方案--------------------
努力了就好
------解决方案--------------------
LZ如果是初学者的话,我不建议你先学php,我是在做了3年开发之后,一个偶然的机会公司让我学php,那时感觉就比较顺利多了。感觉还是从.net开始学起比较好。

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

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

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.

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.
