Skip to content

Wie kann ich einen String von Umlauten und Sonderzeichen befreien? #31

Answered by eaCe
tyrant88 asked this question in Q&A
Discussion options

You must be logged in to vote

Um Sonderzeichen oder Umlaute zu entfernen kannst du rex_string::normalize() nutzen:

$fileName = rex_string::normalize('wichtige-Datön&Fäkten');

$fileName entspricht dann z.B. wichtige_datoen_faekten.

In deinem Beispiel z.B.:

<?php
$anchor = rex_string::normalize('Sprüng-Märke');
?>

<a href="#<?= $anchor ?>">Anker</a>
<div id="<?= $anchor ?>"></div>

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by tyrant88
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants