This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql04d/uebergabe_referenz.php

13 lines
128 B
PHP

<?php
function verdoppler(&$param) {
$param = $param * 2;
}
$zahl = 10;
verdoppler($zahl);
echo "$zahl";
?>