QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 904|回复: 0

请问在php中如何把上个页面生成的对象实例传到下个页面

[复制链接]
发表于 2004-10-26 17:15:02 | 显示全部楼层 |阅读模式
//命名为1.php
<?php
class test
  {
      var $one ="initial";

   function get_one(){
           return $this->one;
}
function set_one($info){
        $this->one=$info;
}
       
  }
?>
//命名为2.php
<?php
require_once('1.php');

$testinstance = new test;
  $test1=$testinstance->get_one();
  echo $test1;
  echo "<br>";

  echo "<br>";
  $testinstance->set_one("change");
   $test1=$testinstance->get_one();
  echo $test1;
    echo "<br>";

   echo "<br>";
  echo "<a href=3.php>第三个页面</a>";
?>
//命名为3.php
<?php
require_once('1.php');

$test2=$testinstance->get_one();
echo $test2;
?>
运行到3.php后,出现结果是initial值,如果我想出现'change'值,应该如何调用, 谢谢
您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-16 15:52 , Processed in 0.079163 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表