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/ysql03d/funktion_trim.php

18 lines
198 B
PHP

<?php
$a = "\t\t Beispieltext ";
var_dump($a);
$nachher = trim($a);
var_dump($nachher);
$a = "Beispieltext";
var_dump($a);
$nachher = trim($a,"xBte");
var_dump($nachher);
?>