易截截图软件、单文件、免安装、纯绿色、仅160KB

php define() 函数及defined()函数的用法


The define() function defines a constant.
define()函数的作用是:定义一个常量。
Constants are much like variables, except for the following differences: 
常量[constant]与变量[variable]有很多相似的地方,因此,很容易混淆;下面,我们列举一下常量[constant]与变量[variable]之间的不同点:
A constant's value cannot be changed after it is set 
一个常量值在指定之后就不可以更改;
Constant names do not need a leading dollar sign ($) 
设置常量时,不需要在前面加上“$”符号;
Constants can be accessed regardless of scope 
常量可以被所有范围的域访问;
Constant values can only be strings and numbers 
常量的值只能是“字符串[string]”和“数字[number]”;
Syntax
语法
define(name,value,case_insensitive)
 
Parameter
参数Description
描述
name
Required. Specifies the name of the constant
必要参数。指定常量的名称
value
Required. Specifies the value of the constant
必要参数。指定常量的值
case_insensitive
Optional. Specifies whether the constant name should be case-insensitive. If set to TRUE, the constant will be case-insensitive. Default is FALSE (case-sensitive)
可选参数。指定常量的名称是否是不区分大小写的[case-insensitive]。如果设置为True,则不区分字母大小写;如果设置为False,则区分字母大小写。默认值是:False
Example 1
案例1
Define a case-sensitive constant:
指定一个常量(区分大小写):
<?phpdefine("GREETING","Hello you! How are you today?");echo constant("GREETING");?>
The output of the code above will be:
上述代码将输出下面的结果:
Hello you! How are you today?
Example 2
案例2
Define a case-insensitive constant:
指定一个常量(不区分大小写):
<?phpdefine("GREETING","Hello you! How are you today?",TRUE);echo constant("greeting");?>
The output of the code above will be:
上述代码将输出下面的结果:
Hello you! How are you today?
The defined() function checks whether a constant exists.
defined()函数的作用是:检查一个常量是否存在。
Returns TRUE if the constant exists, or FALSE


相关文档:

php+mysql分页


分页功能的实现是每种WEB开发语言必须要实现的功能。PHP也好,JSP也罢。我准备用两个方法来阐述PHP+MYSQL实现分页的功能。
 
一、分页程序的原理
分页程序有两个非常重要的参数:每页显示几条记录($pagesize)和当前是第几页($page)。有了这两个参数就可以很方便的写出分页程序,我们以MySql数据库作为数据源, ......

用php对json字符串编码问题

    昨天调用同事的一个json接口,发现调用php中的函数json_decode无法转化为数组。
   <?php
$json = "{'d':[['xxx','中国','广西','xjr7670@sina.com','2010-05-01 13:35:02'],['xxx','中国','广西','xjr7670@sina.com','2010-05-01 13:35:02']],'c':13659,'n':759}";
print_r( ......

PHP之session

session的作用域是在一次会话中起作用,所以在一次会话中,可以用Session来存储保存所需要的值,如实现购物车,客户是否登录的验证等等。在使用前首先要开启session
<?php 
session_start(); 
?> 
考虑是否可写入session
<?php 
if (isset($_POST['userid'])){ 
$_SESSION[' ......

php初级教程(十)新闻的列表和删除

现在我们开始介绍新闻的列表和删除了。
新建立一个文件listnews.php,内容如下:
< ?php
require_once('../inc/config.php');
//包含配置文件
?>
<html>
<head></head>
<title>新闻管理</title>
<body>
<div class="newstitle"></div>
<div class="ne ......

如何在PHP中使用Oracle数据库

http://www.builder.com.cn/2007/1027/583048.shtml
在php3.0以上版本中,php内置了几乎目前所有的数据库处理函数,包括Oracle;在本文中我们通过一个实例来介绍了如何使用这些函数来操作Oracle数据库。
PHP提供了2大类API(应用程序接口)来操作Oracle数据库。一个是标准的Oracle处理函数(ORA) 另一个是Oracle 8调用接口函 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号