I've got a question how can you call a function that has parameter?

for example

function name_function($param)
{

// codes

return $param;
}

how can I call that so that it will prints that param out to the page?