“caractères spéciaux en php” Réponses codées

HTML Caractères spéciaux PHP

/*  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 Caractères spéciaux PHP

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

caractères spéciaux en php

function removeSpecialChar($string) 
		{
			$string = strtolower($string);
			$string = preg_replace('/[^\da-z ]/i', '', $string);// Removes special chars.
			$string = str_replace(' ', '-', $string); // Replaces all spaces with underscore.
			return strtolower($string);
		}
Nilesh

Réponses similaires à “caractères spéciaux en php”

Questions similaires à “caractères spéciaux en php”

Plus de réponses similaires à “caractères spéciaux en php” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code