Home  >  Article  >  Backend Development  >  PHP implements saving objects to Session

PHP implements saving objects to Session

墨辰丷
墨辰丷Original
2018-06-12 16:07:392292browse

PHP implements saving objects to Session

本文实例讲述了php中将一个对象保存到Session中的方法。具体如下:

要保存对象到session其实很简单,我们可以使用session_register()函数,下面是使用范例

person_class.inc.php如下:

name);
    return substr($name, 0, 15);
  }
}
?>

main.php文件如下:

name = "Item Raja";
  $someperson->email = "itemraja@php.net";
  $someperson->clean_name();
}
?>
Click Here

somPage.php文件如下:

name;
?>

总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。

相关推荐:

PHP实现提取中英文首字母的方法

PHP自动生成表单的方法

php针对服务器端预定义变量$_SERVER的方法

相关专题推荐php session (包含图文、视频、案例)

The above is the detailed content of PHP implements saving objects to Session. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn