search

Home  >  Q&A  >  body text

About unset() within function

Please explain, please explain why the output of Mao is not 1,23;---1,23;----1,23; Good people have a safe life.

G3L48BDYD0D9X782GRMDK~V.png

That——————————————

I will put the code here first, good people will have a safe life

<?php

echo '<hr />';

function foo2(){

static $bar1;

$bar1 ;

echo "Befor unset: $bar1,<br />";

unset( $bar1 );

$bar1 = 23;

echo "after unset: $bar1\n<hr />";

}

foo2 ();

foo2 ();

foo2 ();

?>

adolphe_ssadolphe_ss2705 days ago1368

reply all(3)I'll reply

  • 余生请多赐教

    余生请多赐教2017-11-09 16:40:09

    http://php.net/manual/zh/function.unset.php
    The manual contains the sentence on the second floor, you can understand it

    reply
    2
  • lhpllpp

    lhpllpp2017-11-09 10:49:55

    If you unset() a static variable in a function, the static variable will be destroyed inside the function. However, when this function is called again, this static variable will be restored to the value it had before it was last destroyed.

    This is the original words of the document! ! !

    reply
    2
  • 路过

    路过2017-11-09 08:22:43

    There is no ‘-’ output in your code

    reply
    0
  • Cancelreply