function exampleFunction() {
$localVariable = 42; // Local variable
echo $localVariable;
}
// This will cause an error because $localVariable is not accessible here
echo $localVariable;
function exampleFunction() {
$localVariable = 42; // Local variable
echo $localVariable;
}
// This will cause an error because $localVariable is not accessible here
echo $localVariable;