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_wert.php

15 lines
134 B
PHP

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