Help for this page

Select Code to Download


  1. or download this
    $a = $b;
    # ... (other code which does not modify $a or $b) ...
    ++$b;
    
  2. or download this
    $a = $b;
    # ...
    $b = $b->clone(undef, "");
    $b->incr(undef, "");