PHP的来龙去脉
PHP的来龙去脉
PHP是一种服务器运行的HTML脚本语言,以PERL为基础,C,ASP,SHELL,JAVASCRIPT相似。
PHP(PHP Hypertext Preprocessor,Personal HomePage Tools)
1994年Rasmus Lerdorf开始计划发展,在1995年以Personal Home Pages Tools开始对外发表第一个版本。
1995年中,第二版的PHP问市,第二版定名为PHP/FI.并加入MSQL的支持。
1997年,PHP3.0是类似于当今PHP语法结构的第一个版本。
2000年发布PHP4
2004,PHP5诞生。OO功能与XML的集成得到了大大的改进。
PHP的特性
PHP3 简单,速度快,跨平台,强大的数据库支持,嵌入HTML,分析XML,文件存取,文本处理,复杂变量,图像处理
PHP4 API扩充,布尔类型,COM/DCOM,与PHP3兼容性好,配置,加密支持,多维数组,JAVA交互支持,OO特点,ZIP文件处理
PHP5 OO,XML,异常处理,SOAP扩展,支持WEB服务
PHP的机理
PHP在WEB服务器上运行,当PHP脚本被客户端请求时,被请求的PHP程序开始运行,并把执行的结果返回客户端的浏览器。发送给客户端浏览器的内容是普通的HTML文本,不包含PHP代码。这是与嵌入HTML的客户端脚本的最主要的区别。
简单的例子:
index.php
...
$currtime=time();
$currtimestr=strftime("%H:%M:%S",$currtime);
echo "当前时间是:".$currtimestr;
?>
...
以时分秒的格式来显示。
PHP安装与测试
安装MySQL数据库
安装Apache Web服务器
安装GD图形库
安装XML
安装PHP
安装Zend加速引擎
修改Apache Web服务配置文件
测试PHP
MYSQL:
启动和关闭:service mysql start,service mysql stop
版本:mysqladmin version
查看数据库:mysqlshow
Apache:
解压,生成,编译,安装

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

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-

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.

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' =>

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

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

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building
