Help for this page

Select Code to Download


  1. or download this
        $result = func1( $var++ ) op func2( $var );
    
  2. or download this
        $temp1 = func1( $var++ );
        $temp2 = func2( $var );
        $results = $temp1 op $temp2;
    
  3. or download this
        $temp1 = func1( $var );
        $temp2 = func2( ++$var );
        $result = $temp1 op $temp2;
    
  4. or download this
        $result = func1( $var++ ) op func2( $var );