这篇文章主要为大家详细介绍了php将一个对象保存到Session功能实例,具有一定的参考价值,可以用来参考一下。
对php中如何将一个对象保存到Session中的代码感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* php中如何将一个对象保存到Session中的代码
*
* @param
* @arrange 512-笔记网: q1010.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);
}
}
/*** 来自四海网(www.q1010.com) ***/
main.php:
/**
* php中如何将一个对象保存到Session中的代码
*
* @param
* @arrange 512-笔记网: q1010.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>
/*** 来自四海网(www.q1010.com) ***/
somPage.php
/**
* php中如何将一个对象保存到Session中的代码
*
* @param
* @arrange 512-笔记网: q1010.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;
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/1046-0.html
注:关于php将一个对象保存到Session功能实例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:Session
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。