sql >> Database >  >> RDS >> Mysql

verwijder speciale tekens in php

Easy peasy:

function clean($string) {
   $string = str_replace(' ', '-', $string); // Replaces all spaces with hyphens.
   return preg_replace('/[^A-Za-z0-9\-]/', '', $string); // Removes special chars.
}

Gebruik:

echo clean('a|"[email protected]£de^&$f g');

Zal uitvoeren:abcdef-g

Bewerken :

Hey, just a quick question, how can I prevent multiple hyphens from being next to each other? and have them replaced with just 1? Thanks in advance!

function clean($string) {
   $string = str_replace(' ', '-', $string); // Replaces all spaces with hyphens.
   $string = preg_replace('/[^A-Za-z0-9\-]/', '', $string); // Removes special chars.

   return preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
}

verwijs naar deze link



  1. Kalender in Zend Framework

  2. Eerste X-regels van een database verwijderen

  3. waarom pdo->lastInsertId() retourneert 0 wanneer ik STORED PROCEDURE in mysql aanroep?

  4. Postgresql enum wat zijn de voor- en nadelen?