uppity()

You appear to be a bot. Output may be restricted

Description

Increment the number

Example of a simple function that will increment the value of a number

Usage

$integer = uppity( $i );

Parameters

$i
( integer ) required – the number to be incremented

Returns

integer the incremented number

Source

File name: bobbing/bobbing.php
Lines:

1 to 4 of 4
function uppity( $i ) {
  $i++;
  return( $i );
}
 

 View on Trac