戏说PHP——1. 1切的开始
戏说PHP——1. 一切的开始
最近总想写点什么,但又想不起写什么,那就整理下自己捣腾过的东西吧,一切开始于一个月黑风高的夜晚——
咔嚓一个炸雷,56k小猫烧了,裤子都脱了,一片漆黑中,顿时赶脚头晕目眩,怒火中烧,顿时大喝一声——老子要自己做个网站自己看!
那个时候,ASP还没有.net,PHP也还没对象,JSP势头正猛。就好像梅尔吉普森的那句怒吼——“Freedom!”,崇尚自由的我选择了PHP。
就好像天下武功出少林,PHP的很多语法特征都源自C,还有一部分源自Perl。所以你如果拥有C的功底,恭喜你,PHP很容易就可以掌握。
那个时候的大学,几乎所有的基础课程都是以C为教学语言,例如编译原理和数据结构。所以,PHP对我来说,上手非常快。
很多人总问怎么学习PHP,其实,学习任何一门技术或语言,第一要素也是最重要的要素就是——兴趣。就好像我学了两年日语,现在印象最深的除了愛してる就是やめて(也就是传说中的雅蠛蝶),再如我想自己做个给自己看的网站(网站的内容不要深究-_-|||)。有了兴趣,一切困难都会转换成乐趣和成就感!
所有的语言,都是招式,你可以熟背语法和理论来掌握这些招式,但真正想运用自如,做到威力无穷,则需要修炼内功——面向对象思想、数据结构、算法、设计模式……
任何事情,都没有捷径,最笨的方法就是最好的方法,所以那些10天速成之类的想法,直接放弃吧。同样一个函数,没经验和1年经验,3年经验,10年经验的人写出来,是完全不同的(那种简单到直接renturn的就不要说了)。就好像一个大侠,真正的程序员是孤(kong)独(xu)寂(yin)寞(dang)的。
所以,打算学习PHP的朋友们,首先要确定自己有足够坚定的心志去承受那份孤独与寂寞。
想做网站,自然少不了服务器,虽然大部分PHP真正的运行环境是Linux,但大多PHP的开发环境,其实都是Windows上完成,因为Windows实在太方便了嘛。推荐新手使用WAMP或XAMPP两个套件,任选一个即可。都可以轻松完成PHP基本环境的安装。
PHP常规的运行环境是酱紫的:
Apache就是俗称的Web Server,也就是服务器。所以,服务器不是一个硬件,而是一个软件,它专门负责处理http协议的请求。除了Apache还有Nginx也很流行。初学者不必计较细节差异,直接选择Apache就好。
PHP也是一段程序,专门负责解析和运行我们编写的PHP代码,所以图中的PHP,实际上是PHP的解析器。PHP没有编译过程,源代码可以直接被执行。
Mysql是一个开源免费的数据库(这货最近被Oracle收购了,所以很多人开始担心Mysql闭源),MariaDB是Mysql创始人在Mysql被收购后,开发的替代品,Linux系统中已经开始使用MariaDB替代Mysql,不过对于初学者无所谓,可以认为它们是同一个东西,一切都是一样的。
完成了基本运行环境的安装,就可以开始PHP的学习了,你可以这样开始你的第一个网页:
<span style="font-family:Microsoft YaHei;"> phpinfo();?></span>
他会输出你的PHP详细信息。
首先可以看到PHP发版本号,这个很重要,因为PHP不同版本间的差异还是比较大的。最近差异较大的版本就是5.3前后的版本,5.3添加了很多新的特性,用起来更方便,但却是前面的版本不支持的,需要注意。
无聊的时候,我会继续写的!欢迎大家加入Hello PHP群(222578556),大家一起聊理想、谈人生、捡肥皂!?

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

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

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

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

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

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

The page is blank after PHP connects to MySQL, and the reason why die() function fails. When learning the connection between PHP and MySQL database, you often encounter some confusing things...

CMS stands for Content Management System. It is a software application or platform that enables users to create, manage, and modify digital content without requiring advanced technical knowledge. CMS allows users to easily create and organize content

Arrays are linear data structures used to process data in programming. Sometimes when we are processing arrays we need to add new elements to the existing array. In this article, we will discuss several ways to add elements to the end of an array in PHP, with code examples, output, and time and space complexity analysis for each method. Here are the different ways to add elements to an array: Use square brackets [] In PHP, the way to add elements to the end of an array is to use square brackets []. This syntax only works in cases where we want to add only a single element. The following is the syntax: $array[] = value; Example
