手机浏览 RSS 2.0 订阅 膘叔的简单人生 , 腾讯云RDS购买 | 超便宜的Vultr , 注册 | 登陆
浏览模式: 标准 | 列表分类:PHP

PHP学习(二)之详解PHP字符串三种定义方式

任何一门语言,最重要的往往都是由:基本语法、类型、各种变量常量、表达式、运算符、控制结构、函数(对象、异常处理)等组成。在学习PHP的过程中,我也将逐步为以上的内容的学习作一概要,当然,首推还是手册,基本以介绍手册为主。

» 阅读全文

PHP学习(二)之类型

任何一门语言,最重要的往往都是由:基本语法、类型、各种变量常量、表达式、运算符、控制结构、函数(对象、异常处理)等组成。在学习PHP的过程中,我也将逐步为以上的内容的学习作一概要,当然,首推还是手册,基本以介绍手册为主。

» 阅读全文

PHP学习(一)之基本语法

任何一门语言,最重要的往往都是由:基本语法、类型、各种变量常量、表达式、运算符、控制结构、函数(对象、异常处理)等组成。在学习PHP的过程中,我也将逐步为以上的内容的学习作一概要,当然,首推还是手册,基本以介绍手册为主。

» 阅读全文

PHP中str_replace函数的详解 [转 ]

在网上看到这个函数的介绍。虽然这个函数比较简单,且不支持正则,但……这个函数还是相对用的比较多的,自己又比较懒,看到这篇文章,于是就转载一下。

str_replace用的最多的地方恐怕应该是str_replace(array("\r","\n","\r\n"),"<br />" , $content);了,适合添加文章或者其他的时候用,当然这个时候nl2br函数也有用。

原文地址:http://www.phpweblog.net/yemoo/archive/2008/03/15/2971.html

原文作者:Yemoo

» 阅读全文

Tags: 函数

PHP中Eval的作用

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.

» 阅读全文

Tags: php