php新手入门(经验谈)_PHP
旅嬲飧鰌ost我是在2001年12月初写的,希望对大家学习php有所帮助
估计第一个问题大多数是如何配置的问题了
建议一下几个软件
服务器apache,数据库mysql,当然还得有php
网上都有下载的,稍微搜索一下就可以了
1,apache配置说明,可以在本版的看到
里面有一片文章,讲的就是98下如何配置的
我每次配置几乎都看那篇文章
2,mysql的配置,现在是不用怎么配置的了,直接执行安装程序
就可以了
3,php的配置和apache的结合
如果你的e文好的话,直接看php解压包中的说明就可以
否则,就看上面推荐的那个文章
工具问题
现在的php编程工具不少,大同小异
对于新手,推荐用PHPED
函数提示,变量提示,语法加亮,自动缩进,
而且还可以调试,但是注意,如果你的apache是配置成
php modul方式的话,最好phped不要和它共用一个php.exe
其它的编辑器还有
editplus,很多人推荐的,我也最喜欢使用它
语法加亮,自动缩进,它的自动缩进功能是最强的
如果你写的php程序中同时有很多html代码的话,那么editplus将
是最好的选择,它可以很方便的插入常见的html代码,可以自己定义快捷键
ultraedit,这也是一个不少人使用的编辑器
语法加亮,自动缩进
还有它有10个粘贴板可以使用,及其方便
另外还可以打开2进制文件,但是和编写php没有关系
对于这个我用的不多,但是很多人都说它很好,也许你们可以自己去发现
turbo php,一个国产的php编辑器
支持语法加亮,函数提示,它的函数提示很是详细
一个比较有希望的编辑器,但是目前看来还有待努力
接下来褪茄拔侍饬?
首先得买或者down一部教程
我觉得一本好的php教程,必须要包含以下几个内容
详细的语法说明,详细的函数说明,几个经典的php程序解说
mysql使用说明,mysql语法说明
注意如果函数说明里面没有session函数说明的
那么不管它了,估计是php3的,很过时了
然后太厚的也不好,毕竟只是入门书而已
太厚,要不就是废话多,要不就是太深入了
初学者,太深入了,反而容易迷茫
读完这本书之后,就应该马上开始自己编程序了
只有自己动手了之后,你学到的东西才是你自己的东西
这个时候最好的帮助就是一本详细的php说明书了
当然得是电子版的:)这样使用起来才方便
作为新手推荐还是用中文版,因为查看起来比较快
等进一步之后
如果你的英文不是很次的话,推荐用英文版,www.php.net可以下载
我那里也有
如果你e文很好的话,一开始就可以从英文版入手
中文翻译的虽然方便,但是难免遗漏,难免有错
同时阅读学习一些经典的程序也是快速提升的方法之一
下面是一些我常用的工具和软件列表
apache,mysql,php
editplus,phpmanual.chm,中文版和英文版
中文版的特点是查起来快些,毕竟看中文的速度还是比看e文的快
mysql-doc
这些都可以在是可以下载的
另外一些比较有用的站点
www.php.net,官方站点,没得说了
phpuser.com,php中文用户,国内数一数二的php站点
www.csdn.net里面的php论坛,可以帮

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

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

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
