php将一个对象保存到Session功能实例

内容摘要
这篇文章主要为大家详细介绍了php将一个对象保存到Session功能实例,具有一定的参考价值,可以用来参考一下。

对php中如何将一个对象保存到Session中的代码对此感兴趣的朋友,看
文章正文

这篇文章主要为大家详细介绍了php将一个对象保存到Session功能实例,具有一定的参考价值,可以用来参考一下。

对php中如何将一个对象保存到Session中的代码对此感兴趣的朋友,看看idc笔记做的技术笔记!php中如何将一个对象保存到Session中的代码要保存对象到session其实很简单,我们可以使用session_register()函数,下面是使用范例person_class.inc:

/**
 * php中如何将一个对象保存到Session中的代码
 *
 * @param 
 * @arrange 512-笔记网: 512Pic.com
**/
// File:  person_class.inc
//   Contains the class definition necessary to let an object be a session
//   variable.
//
class Person
{
	var $name;
	var $email;
	//
	// A simple function to illustrate the point
	//
	function clean_name ()
	{
		$name = preg_replace("/h(.)+/i", "\\1", $this->name);
		return substr($name, 0, 15);
	}
}
/***   来自php教程(www.idcnote.com)   ***/
main.php:

/**
 * php中如何将一个对象保存到Session中的代码
 *
 * @param 
 * @arrange 512-笔记网: 512Pic.com
 **/
//  File:  main.php
//  Here is where we save and retrieve the object
//
include_once 'person_class.inc';
session_register('someperson');
if (!$someperson) {
	$someperson = new Foo;
	$someperson->name = "Item Raja";
	$someperson->email = "itemraja@php.net";
	$someperson->clean_name();
}
<a href="somePage.php">Click Here</a>
/***   来自php教程(www.idcnote.com)   ***/
somPage.php

/**
 * php中如何将一个对象保存到Session中的代码
 *
 * @param 
 * @arrange 512-笔记网: 512Pic.com
//  File: somePage.php
//    Print out the name without initializing the
//    class and setting the variables 
**/
include_once 'person_class.inc';
session_register('foobar');
print $foobar->name;

/***   来自php教程(www.idcnote.com)   ***/

注:关于php将一个对象保存到Session功能实例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!