<?php
function test() {
    $localVar = "محلی";
    echo $localVar;
}
test(); // خروجی: محلی
// echo $localVar; // خطا: تعریف نشده
?>