中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用php怎么將一個對象保存到Session中

發布時間:2021-01-14 15:04:03 來源:億速云 閱讀:142 作者:Leah 欄目:開發技術

本篇文章為大家展示了利用php怎么將一個對象保存到Session中,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

要保存對象到session其實很簡單,我們可以使用session_register()函數,下面是使用范例

person_class.inc.php如下:

<?php
//
//File: person_class.inc.php
//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);
  }
}
?>

main.php文件如下:

<?php
//
//File: main.php
//Here is where we save and retrieve the object
//
include_once 'person_class.inc.php';
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>

somPage.php文件如下:

<?php
//
//File: somePage.php
//Print out the name without initializing the
//class and setting the variables
//
include_once 'person_class.inc.php';
session_register('foobar');
print $foobar->name;
?>

上述內容就是利用php怎么將一個對象保存到Session中,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

海伦市| 威海市| 玛多县| 丹东市| 张北县| 杂多县| 佛冈县| 南召县| 高雄市| 保亭| 新丰县| 木兰县| 青河县| 扶绥县| 黎城县| 阳春市| 扶风县| 大连市| 古田县| 荣昌县| 陕西省| 英吉沙县| 长子县| 津南区| 平阳县| 佳木斯市| 札达县| 尼玛县| 峡江县| 封开县| 惠安县| 逊克县| 新民市| 抚宁县| 济阳县| 布拖县| 井冈山市| 葫芦岛市| 贡觉县| 兴仁县| 连山|