<?php $greeting = "سلام"; $greetFunc = function() use ($greeting) { echo $greeting . " به PHP!"; }; $greetFunc(); // خروجی: سلام به PHP!