duai0935 2011-04-07 06:53
浏览 60
已采纳

如何在php的同一页面中将变量从一个函数传递到另一个函数?

Ok now i have another problem i want to send one or more variable from one function to another like this:

class test{

    var $text2;

    function text1($text1){ // This will catch "This is text" from $text variable.

        $text1 = $this -> text2; // Giving $text1 value to $text2 

        return $this -> text2; // Now here is the trouble i think, i want to send the variable to the next function that is text2(). How do i do that?

    }
    function text2($text2){ // Here is the place that says undefined variable i want the variable $text2 from function text1() to be called here.

        echo $text2; // Now the variable $text2 should echo "This is text".

    }
}

$test = new test();

$text1 = "This is text"; // Assigning value to the variable.

$test -> text1($text1); // Passing the variable as parameter in the function text1().

echo $test -> text2($text2); // Trying to display the value of $text2 that is "This is text".
  • 写回答

6条回答 默认 最新

  • duanqiangwu9332 2011-04-07 07:20
    关注

    @authors of most other answers: why do you just take bad code and re-use it instead of pointing out the obvious bad practice?


    You have troubles with your code mainly because it's extremely hard to read! Your functions and variables have the same names which is bad and they are bad variable and function names in general!

    • Function names should have an 'action word' in them, a verb that shows what they do
    • Variable names should not contain numbers
    • Variable names should describe a container
    • Data types make for bad variable names ($string, $text, $int)

    Here is an example of how your class could look like, I named in 'TextPuzzler' because of @Matteo Riva 's comment.

    class TextPuzzler
    {
        protected $myText;
    
        public function setMyText($text)
        {
            $this->myText = $text;
        }
    
        public function getMyText()
        {
            return $this->myText;
        }
    
        public function printMyText()
        {
            echo $this->myText;
        }
    }
    
    $puzzler = new TextPuzzler();
    
    $text = "This is a random text";
    
    //this is how you set your text
    $puzzler->setMyText($text);
    
    //this is how you echo it via a special echo function, not really needed ...
    $puzzler->printMyText();
    
    //... because you can also use the getter and echo it like this
    echo $puzzler->getMyText();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)

报告相同问题?

悬赏问题

  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题
  • ¥15 linux驱动,linux应用,多线程