函数

<?php

function add3AndPrint($value) {
    echo $value + 3;
}

add3AndPrint(5);