小弟我也来发一个关于PHP行不行的月经帖
我也来发一个关于PHP行不行的月经帖
以前经常碰到有人问:
php怎么样?
php还行不行?
有哪些大站在用php?
.net比php好吗?
java呢?
每次看到这样的帖子,我都蛋碎了……
其实这个问题早就有了明确的答案,因为现在逐渐开始流行云计算,而在国内几家门户(新浪sae,百度bce,腾讯open,阿里ace)搞的云计算平台上面,无一例外的是,PHP做为默认支持的程序语言。
除此之外,就是java了,而.net压根儿就看不到,以后能不能看到,谁来分析分析
------解决方案--------------------
杀鸡焉用牛刀
做做网站 php 足矣
------解决方案--------------------
语言只是语言而已
------解决方案--------------------
有很多人在看这个问题的时候,可能不是宏观的去看
而是仅仅局限在国内有多少招聘以及工作后有多少薪水的角度去看这个问题
毕竟php行不行可能不是他们要关心的,更关心的是php能不能给他们带来高收入.即使 php超级流行,可是工资还是1500,他们心里也是会很黯淡,觉得没有前途,也就滋生了php不行的想法。
除非有什么东西比php更具有革命性,或者php不再更新,php才有可能不行了.
可能我们可以探讨一下php的从业者相对其他码农薪酬是不是偏低了?
------解决方案--------------------
语言有前途
一直觉得php像竖着中指
------解决方案--------------------
------解决方案--------------------
------解决方案--------------------
------解决方案--------------------
这个和语言有毛关系,哪个同学不是会2,3门语言才能吃口饭啊。
公司有评级,什么级别拿什么钱,就会个php感觉就像培训班出来的一样,没有说服力。
------解决方案--------------------
我认为PHP从今后10年内都是一个铁饭碗
------解决方案--------------------
支持多语言技术,如今只会PHP行不通,兼学Java、#C比较好
------解决方案--------------------
为什么都会有这样的争论呢?
行或不行很要紧么
------解决方案--------------------
为什么不一直去学习呢
谁知道几十年后 PHP就不会被淘汰呢
那倒不如有时间 学习其他 的语言了呢
------解决方案--------------------
感觉做网站的要赚外快(创业初期)更容易一些
------解决方案--------------------
大家用了多久学的PHP啊
------解决方案--------------------
大家学了多久找到的工作啊
------解决方案--------------------
主要是各个空间基本都支持php
------解决方案--------------------
据我所知。net只能在windows,干用windows做服务器的,没几个。除非人傻钱多
php开发高效,开发效率太高了,“所见即所得”。这就是天然的优势。
单从时间是来说。一个项目,工期紧了。用php还是很不错的。
------解决方案--------------------
学一门技术只会死路一条。
------解决方案--------------------
生活而已 何必那么较真。
------解决方案--------------------
搞系统开发,肯定用C和汇编;搞系统维护,似乎得用Shell脚本,搞网站开发,还是用php或者jsp吧。所以做不同的事,要用不同语言。因为他们都有自己的强项。

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











AI can help optimize the use of Composer. Specific methods include: 1. Dependency management optimization: AI analyzes dependencies, recommends the best version combination, and reduces conflicts. 2. Automated code generation: AI generates composer.json files that conform to best practices. 3. Improve code quality: AI detects potential problems, provides optimization suggestions, and improves code quality. These methods are implemented through machine learning and natural language processing technologies to help developers improve efficiency and code quality.

Handling high DPI display in C can be achieved through the following steps: 1) Understand DPI and scaling, use the operating system API to obtain DPI information and adjust the graphics output; 2) Handle cross-platform compatibility, use cross-platform graphics libraries such as SDL or Qt; 3) Perform performance optimization, improve performance through cache, hardware acceleration, and dynamic adjustment of the details level; 4) Solve common problems, such as blurred text and interface elements are too small, and solve by correctly applying DPI scaling.

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

To safely and thoroughly uninstall MySQL and clean all residual files, follow the following steps: 1. Stop MySQL service; 2. Uninstall MySQL packages; 3. Clean configuration files and data directories; 4. Verify that the uninstallation is thorough.

HTML5 brings five key improvements: 1. Semantic tags improve code clarity and SEO effects; 2. Multimedia support simplifies video and audio embedding; 3. Form enhancement simplifies verification; 4. Offline and local storage improves user experience; 5. Canvas and graphics functions enhance the visualization of web pages.

MySQL functions can be used for data processing and calculation. 1. Basic usage includes string processing, date calculation and mathematical operations. 2. Advanced usage involves combining multiple functions to implement complex operations. 3. Performance optimization requires avoiding the use of functions in the WHERE clause and using GROUPBY and temporary tables.

Methods for configuring character sets and collations in MySQL include: 1. Setting the character sets and collations at the server level: SETNAMES'utf8'; SETCHARACTERSETutf8; SETCOLLATION_CONNECTION='utf8_general_ci'; 2. Create a database that uses specific character sets and collations: CREATEDATABASEexample_dbCHARACTERSETutf8COLLATEutf8_general_ci; 3. Specify character sets and collations when creating a table: CREATETABLEexample_table(idINT

Composer is a dependency management tool for PHP, and manages project dependencies through composer.json file. 1) parse composer.json to obtain dependency information; 2) parse dependencies to form a dependency tree; 3) download and install dependencies from Packagist to the vendor directory; 4) generate composer.lock file to lock the dependency version to ensure team consistency and project maintainability.
