<?php function callFunc($callback) { $x = rand(); $callback($x); } callFunc(function($number) { echo $number; });