-
Website Fastlinks
Domain Grapping Schnipsel -
More Links
Kostenloser Backlink
seo-attack.de Informationen zum thema SEO, SEM
kostenlose Informationen und beratung zum thema SEO, SEM für ihre Internetseite.
Reseller PHP Scripte
Projekte-Shop von official-reseller.com , ebooks, Fotos, Grafiken, Onlineshop, Templates, Webprojekte
Index - PHP Schnipsel - Textfunktionen Scripthelp.de
Konvertieren von HTML-Tags
<?php
$sting = "Dies ist ein <b>Test-String</b>";
$sting = htmlentities($sting);
echo $sting;
?>
$sting = "Dies ist ein <b>Test-String</b>";
$sting = htmlentities($sting);
echo $sting;
?>
Bestimmte Zeichen ersetzen:
<?php
$text = "Umlaut Test: wärend.";
$text = str_replace ("ä", "ä", $text);
echo $text;
?>
$text = "Umlaut Test: wärend.";
$text = str_replace ("ä", "ä", $text);
echo $text;
?>
Zeichenkette kürzen:
<?php
$string="Test-String!";
$string = substr(string, 0, 16);
$string .= "...";
echo string;
?>
$string="Test-String!";
$string = substr(string, 0, 16);
$string .= "...";
echo string;
?>
Länge eines Strings:
?php
$string="Test-String!";
$len = strlen($string);
echo "Der Test String hat ".$len." Zeichen.";
?>

