“PHP Strip Out Karakter Khusus” Kode Jawaban

PHP Strip Out Karakter Khusus

function clean($string) {
   $string = str_replace(' ', '-', $string); // Replaces all spaces with hyphens.

   return preg_replace('/[^A-Za-z0-9\-]/', '', $string); // Removes special chars.
}
Courageous Cod

Hapus Karakter Khusus dalam PHP

phpCopy<?php
$mainstr = "<h2>Welcome to <b>PHPWorld</b></h2>";

echo "Text before remove: \n" . $mainstr;

echo "\n\nText after remove: \n" .
    str_ireplace(array('<b>', '</b>', '<h2>', '</h2>'), '',
    htmlspecialchars($mainstr));
?>
CodeGuruDev

Jawaban yang mirip dengan “PHP Strip Out Karakter Khusus”

Pertanyaan yang mirip dengan “PHP Strip Out Karakter Khusus”

Lebih banyak jawaban terkait untuk “PHP Strip Out Karakter Khusus” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya