“PHP Escape 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

Tentukan karakter khusus dalam PHP

<?php

$string = 'foo';

if (preg_match('/[\'^£$%&*()}{@#~?><>,|=_+¬-]/', $string))
{
    // one or more of the 'special characters' found in $string
}
Alive Antelope

PHP Escape Karakter Khusus

/*  EXAMPLE:	<p>Bed & Breakfast</p>	-->	  <p>Bed &amp; Breakfast</p>  
    & 	&amp;
    " 	&quot; 				(unless ENT_NOQUOTES is set)
    ' 	&#039; or &apos; 	(ENT_QUOTES must be set)
    < 	&lt;
    > 	&gt;				*/

<?php
$new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);
echo $new; 					// <a href='test'>Test</a>
?>
VasteMonde

HTML Karakter Khusus PHP

$string = "This is testing message "ETC" ";
htmlspecialchars($string, ENT_COMPAT)

Jawaban yang mirip dengan “PHP Escape Karakter Khusus”

Pertanyaan yang mirip dengan “PHP Escape Karakter Khusus”

Lebih banyak jawaban terkait untuk “PHP Escape Karakter Khusus” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya