免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 981 | 回复: 0
打印 上一主题 下一主题

php学习日记(一) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-06 14:32 |只看该作者 |倒序浏览
header 应用:在使用header之前一定不能有任何的输出,类似于echo ,print 也不能有html语句。否则会出现,header has been sended 的错误提示
session篇:
简介:
Session support in PHP consists of a way to preserve certain data across
subsequent accesses. This enables you to build more customized applications and
increase the appeal of your web site.
A visitor accessing your web site is assigned a unique id, the so-called
session id. This is either stored in a cookie on the user side or is propagated
in the URL.
----------------------------------------------------------------------
session_start() initialize session data,
session_start()creates a session or resumes the current one based on the current session id that's being pasted via a request such as
GET,POST,or a cookie.
//page1.php
//page2.php
--------------------------------------------------------
注意在使用session时,要注意同header相同的问题(上有描述)
在一些网上下载的源程序中还能发现session_register(..)函数。
-------------------------------------------------------------
session_register() accepts a variable number of
arguments, any of which can be either a string holding the name of a variable or
an array consisting of variable names or other arrays. For each name,session_register() registers the global variable with
that name in the current session.
session_refister() 的使用依赖于register_globals=on但是自php 4.2.0起,这一选项被默认设置为off.
you'd better use $_SESSION instead of session_register().

               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/17444/showart_108890.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP