91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

利用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

资兴市| 黄大仙区| 通山县| 瓮安县| 贺州市| 嵊泗县| 鄂温| 德惠市| 卓尼县| 辉南县| 左贡县| 武川县| 禹州市| 犍为县| 华池县| 肥乡县| 连云港市| 吉首市| 龙陵县| 兴隆县| 朝阳市| 白山市| 安图县| 临猗县| 娱乐| 板桥市| 建始县| 阜南县| 手游| 油尖旺区| 阿坝县| 瑞安市| 仁怀市| 沾化县| 加查县| 灵石县| 涪陵区| 延吉市| 普安县| 深州市| 杨浦区|