任何一门语言,最重要的往往都是由:基本语法、类型、各种变量常量、表达式、运算符、控制结构、函数(对象、异常处理)等组成。在学习PHP的过程中,我也将逐步为以上的内容的学习作一概要,当然,首推还是手册,基本以介绍手册为主。
» 阅读全文
Submitted by gouki on 2008, March 24, 10:03 PM
任何一门语言,最重要的往往都是由:基本语法、类型、各种变量常量、表达式、运算符、控制结构、函数(对象、异常处理)等组成。在学习PHP的过程中,我也将逐步为以上的内容的学习作一概要,当然,首推还是手册,基本以介绍手册为主。
» 阅读全文
Submitted by gouki on 2008, March 23, 10:29 PM
任何一门语言,最重要的往往都是由:基本语法、类型、各种变量常量、表达式、运算符、控制结构、函数(对象、异常处理)等组成。在学习PHP的过程中,我也将逐步为以上的内容的学习作一概要,当然,首推还是手册,基本以介绍手册为主。
» 阅读全文
Submitted by gouki on 2008, March 21, 9:33 PM
任何一门语言,最重要的往往都是由:基本语法、类型、各种变量常量、表达式、运算符、控制结构、函数(对象、异常处理)等组成。在学习PHP的过程中,我也将逐步为以上的内容的学习作一概要,当然,首推还是手册,基本以介绍手册为主。
» 阅读全文
Submitted by gouki on 2008, March 20, 8:21 PM
在网上看到这个函数的介绍。虽然这个函数比较简单,且不支持正则,但……这个函数还是相对用的比较多的,自己又比较懒,看到这篇文章,于是就转载一下。
str_replace用的最多的地方恐怕应该是str_replace(array("\r","\n","\r\n"),"<br />" , $content);了,适合添加文章或者其他的时候用,当然这个时候nl2br函数也有用。
原文地址:http://www.phpweblog.net/yemoo/archive/2008/03/15/2971.html
原文作者:Yemoo
» 阅读全文
Submitted by gouki on 2008, March 19, 9:41 AM
eval是什么,相信很多都会知道。但真实有多少人使用它呢?恐怕在实际应用中,使用的也比较少吧。(详细请看全文)
Evaluates the string given in code_str as PHP code. Among other things, this can be useful for storing code in a database text field for later execution.
There are some factors to keep in mind when using eval(). Remember that the string passed must be valid PHP code, including things like terminating statements with a semicolon so the parser doesn't die on the line after the eval(), and properly escaping things in code_str. To mix HTML output and PHP code you can use a closing PHP tag to leave PHP mode.
Also remember that variables given values under eval() will retain these values in the main script afterwards.
» 阅读全文