<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chaînes : Astuces de programmation Le MEMO du Web Développeur</title>
	<atom:link href="https://memo-web.fr/tag/chaines/feed/" rel="self" type="application/rss+xml" />
	<link>https://memo-web.fr</link>
	<description></description>
	<lastBuildDate>Tue, 22 Jul 2025 12:33:33 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>Fonction PHP pour réduire une chaîne à ses n premiers mots</title>
		<link>https://memo-web.fr/categorie-php-157/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=categorie-php-157</link>
					<comments>https://memo-web.fr/categorie-php-157/#respond</comments>
		
		<dc:creator><![CDATA[t@ra]]></dc:creator>
		<pubDate>Wed, 27 Nov 2024 14:41:44 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Chaînes]]></category>
		<guid isPermaLink="false">http://memo-web.fr/?p=123</guid>

					<description><![CDATA[<p>La fonction PHP suivante retourne les $word_limit premiers mots de $string.Dans le cas où le nombre total de mots de $string est supérieur à $word_limit, je rajoute  [lire la suite] en fin de la chaine de retour de fonction, avec un lien passé en dernier paramètre de la fonction. Réduction d&#8217;une chaîne à un nombre de mots [&#8230;]</p>
The post <a href="https://memo-web.fr/categorie-php-157/">Fonction PHP pour réduire une chaîne à ses n premiers mots</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></description>
										<content:encoded><![CDATA[<p>La fonction PHP suivante retourne les $word_limit premiers mots de $string.<br />Dans le cas où le nombre total de mots de $string est supérieur à $word_limit, je rajoute  <em>[lire la suite]</em> en fin de la chaine de retour de fonction, avec un lien passé en dernier paramètre de la fonction.</p>



<h2 class="wp-block-heading">Réduction d&rsquo;une chaîne à un nombre de mots donné</h2>
<p>exemple 1 avec implode / explode :</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">function Reduire_Chaine($string, $word_limit, $lien)
{
  $string=strip_tags($string);
  $words = explode(' ', $string, ($word_limit + 1));
  if(count($words) &gt; $word_limit){
    array_pop($words);$fin=' &lt;a href="'.$lien.'"&gt;[lire la suite]&lt;/a&gt;';
  }else
    $fin='';
  return implode(' ', $words).$fin;
}</pre>

<p>exemple 2 avec preg_split :</p>
<pre class="EnlighterJSRAW" data-enlighter-language="php">
function Reduire_Chaine_2($texte, $nb_mots = 10) {
  $mots = preg_split('/\s+/', trim($texte));
  if (count($mots) &lt;= $nb_mots) {   
   return $texte; }
 return implode(' ', array_slice($mots, 0, $nb_mots)) . '...';
}</pre><div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div>The post <a href="https://memo-web.fr/categorie-php-157/">Fonction PHP pour réduire une chaîne à ses n premiers mots</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></content:encoded>
					
					<wfw:commentRss>https://memo-web.fr/categorie-php-157/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Comment formater un grand nombre à l&#8217;affichage pour le rendre plus lisible (en PHP)</title>
		<link>https://memo-web.fr/categorie-php-154/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=categorie-php-154</link>
					<comments>https://memo-web.fr/categorie-php-154/#respond</comments>
		
		<dc:creator><![CDATA[t@ra]]></dc:creator>
		<pubDate>Tue, 25 Dec 2012 14:43:49 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Chaînes]]></category>
		<guid isPermaLink="false">http://memo-web.fr/?p=127</guid>

					<description><![CDATA[<p>La fonction PHP&#160;number_format&#160;permet d&#8217;afficher de façon plus lisible pour l&#8217;internaute, les grands nombres en ajoutant des séparateurs (paramétrables) entre les milliers, ainsi qu&#8217;un séparateur décimal si besoin. Exemple : Affichera : Le prix est : 10 000 000,00  € J&#8217;ai utilisé ici la fonction pour afficher les chiffres au format standard français, d&#8217;autres format sont possibles [&#8230;]</p>
The post <a href="https://memo-web.fr/categorie-php-154/">Comment formater un grand nombre à l’affichage pour le rendre plus lisible (en PHP)</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></description>
										<content:encoded><![CDATA[<p>La fonction PHP&nbsp;<strong>number_format&nbsp;</strong>permet d&rsquo;afficher de façon plus lisible pour l&rsquo;internaute, les grands nombres en ajoutant des séparateurs (paramétrables) entre les milliers, ainsi qu&rsquo;un séparateur décimal si besoin.</p>



<p>Exemple :</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">&lt;?php
$Prix="10000000";
echo 'Le prix est : '.number_format($Prix, 2, ',', ' ').' €';
?></pre>



<p>Affichera<em> : Le prix est : 10 000 000,00  €</em></p>



<p><br>J&rsquo;ai utilisé ici la fonction pour afficher les chiffres au format standard français, d&rsquo;autres format sont possibles en modifiant les paramètres de cette fonction,&nbsp;<a href="http://php.net/manual/fr/function.number-format.php">vous pouvez les trouver ici</a>.</p>
<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div>The post <a href="https://memo-web.fr/categorie-php-154/">Comment formater un grand nombre à l’affichage pour le rendre plus lisible (en PHP)</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></content:encoded>
					
					<wfw:commentRss>https://memo-web.fr/categorie-php-154/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Suppession des accents dans une phrase en PHP</title>
		<link>https://memo-web.fr/categorie-php-130/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=categorie-php-130</link>
					<comments>https://memo-web.fr/categorie-php-130/#respond</comments>
		
		<dc:creator><![CDATA[t@ra]]></dc:creator>
		<pubDate>Thu, 02 Aug 2012 13:47:40 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Chaînes]]></category>
		<guid isPermaLink="false">http://memo-web.fr/?p=135</guid>

					<description><![CDATA[<p>La fonction suivante renvoit la chaine $mot, passée en la nettoyant de ses accents. Les caractères accentués ayant été remplacés pour leur équivalent non accentués. Fonction pour supprimer les accents en PHP Exemple&#160;: Affiche :&#160;L&#8217;enorme elephant gris fonce mais sans accent</p>
The post <a href="https://memo-web.fr/categorie-php-130/">Suppession des accents dans une phrase en PHP</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></description>
										<content:encoded><![CDATA[<p>La fonction suivante renvoit la chaine $<em>mot</em>, passée en la nettoyant de ses accents.</p>



<p>Les caractères accentués ayant été remplacés pour leur équivalent non accentués.</p>



<h2 class="wp-block-heading">Fonction pour supprimer les accents en PHP</h2>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">function SupprimerLesAccents($mot){
    return strtr( $mot, "ÀÁÂÃÄÅàáâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ",
                        "AAAAAAaaaaaaOOOOOOooooooEEEEeeeeCcIIIIiiiiUUUUuuuuyNn" );
}</pre>



<p>Exemple&nbsp;:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">$chaine="L'énorme éléphant gris foncé mais sans accent";
$chaineDesaccentuee=SupprimerLesAccents($chaine);
echo $chaineDesaccentuee;</pre>



<p>Affiche :&nbsp;<em>L&rsquo;enorme elephant gris fonce mais sans accent</em></p>
<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div>The post <a href="https://memo-web.fr/categorie-php-130/">Suppession des accents dans une phrase en PHP</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></content:encoded>
					
					<wfw:commentRss>https://memo-web.fr/categorie-php-130/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Mettre en gras les occurrences d&#8217;un mot dans une phrase en PHP</title>
		<link>https://memo-web.fr/categorie-php-131/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=categorie-php-131</link>
					<comments>https://memo-web.fr/categorie-php-131/#respond</comments>
		
		<dc:creator><![CDATA[t@ra]]></dc:creator>
		<pubDate>Thu, 02 Aug 2012 13:46:47 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Chaînes]]></category>
		<guid isPermaLink="false">http://memo-web.fr/?p=133</guid>

					<description><![CDATA[<p>La fonction suivante retourne la chaîne $phrase, avec toutes les occurences du mot $mot&#160;entourées de la balise HTML&#160;&#60;b&#62;&#60;/b&#62;&#160;qui a pour fonction de mettre en valeur du texte (gras). On peut aussi choisir de remplacer les balises&#160;&#60;b&#62;&#60;/b&#62;&#160;par un&#160;&#60;span class= »maclasse »&#62;&#60;/span&#62;, afin de gérer le style directement dans la feuille de style CSS&#160;en paramétrant la classe .maclasse . [&#8230;]</p>
The post <a href="https://memo-web.fr/categorie-php-131/">Mettre en gras les occurrences d’un mot dans une phrase en PHP</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></description>
										<content:encoded><![CDATA[<p>La fonction suivante retourne la chaîne $<em>phrase</em>, avec toutes les occurences du mot $<em>mot&nbsp;</em>entourées de la balise HTML&nbsp;<strong>&lt;b&gt;&lt;/b&gt;</strong>&nbsp;qui a pour fonction de mettre en valeur du texte (gras).</p>



<p>On peut aussi choisir de remplacer les balises&nbsp;<strong>&lt;b&gt;&lt;/b&gt;</strong>&nbsp;par un&nbsp;<strong>&lt;span class= »maclasse »&gt;&lt;/span&gt;</strong>, afin de gérer le style directement dans la feuille de style CSS&nbsp;en paramétrant la classe .maclasse .<br><br></p>



<h2 class="wp-block-heading">Fonction PHP de mise en exergue d&rsquo;un mot dans une phrase</h2>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">function MettreMotEnGras($mot, $phrase) {
  $mot = strtolower(strtr( $mot, "ÀÁÂÃÄÅàáâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ", "AAAAAAaaaaaaOOOOOOooooooEEEEeeeeCcIIIIiiiiUUUUuuuuyNn" ));
  $recherche = array("a","e","i","o","u","y","c","n" );
  $remplacement = array("[a|à|á|â|ã|ä|å]{1}","[e|è|é|ê|ë]{1}","[i|ì|í|î|ï]{1}","[o|ò  |ó|ô|õ|ö|ø]{1}","[u|ù|ú|û|ü]{1}","[y|y]{1}","[c|ç]{1}","[n|ñ]{1}" );
  $mot = str_replace($recherche, $remplacement, $mot);
  return eregi_replace("($mot)", "&lt;b>\\1&lt;/b>", $phrase);
}</pre>
<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div>The post <a href="https://memo-web.fr/categorie-php-131/">Mettre en gras les occurrences d’un mot dans une phrase en PHP</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></content:encoded>
					
					<wfw:commentRss>https://memo-web.fr/categorie-php-131/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Formater une chaine en URL</title>
		<link>https://memo-web.fr/categorie-php-64/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=categorie-php-64</link>
					<comments>https://memo-web.fr/categorie-php-64/#respond</comments>
		
		<dc:creator><![CDATA[t@ra]]></dc:creator>
		<pubDate>Sun, 18 Dec 2011 16:15:13 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Chaînes]]></category>
		<category><![CDATA[URL]]></category>
		<guid isPermaLink="false">http://memo-web.fr/?p=164</guid>

					<description><![CDATA[<p>Fonction qui permet de faire de générer des chaînes conformes aux URLs en formatant par exemple le titre d&#8217;une page sous format URL, soit sous forme de caractères alphanumériques et tirets uniquement. On utilise d&#8217;abord la fonction de suppression des accents dans une chaine &#60;?php function SupprimeLesAccents($mot){ &#160;&#160; &#160;return strtr( $mot, "ÀÁÂÃÄÅàáâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ", "AAAAAAaaaaaaOOOOOOooooooEEEEeeeeCcIIIIiiiiUUUUuuuuyNn" ); } [&#8230;]</p>
The post <a href="https://memo-web.fr/categorie-php-64/">Formater une chaine en URL</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></description>
										<content:encoded><![CDATA[<p>Fonction qui permet de faire de générer des chaînes conformes aux URLs en formatant par exemple le titre d&rsquo;une page sous format URL, soit sous forme de caractères alphanumériques et tirets uniquement.</p>



<p>On utilise d&rsquo;abord la fonction de suppression des accents dans une chaine</p>



<pre class="wp-block-preformatted">&lt;?php
function SupprimeLesAccents($mot){
&nbsp;&nbsp; &nbsp;return strtr( $mot, "ÀÁÂÃÄÅàáâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ", 
                        "AAAAAAaaaaaaOOOOOOooooooEEEEeeeeCcIIIIiiiiUUUUuuuuyNn" );
}

</pre>



<p>Puis on remplace les caractères autres que alpha numériques par des tirets, à la fin on supprime les tirets supplémentaires.</p>



<p>La chaine de retour de la fonction est au format URL</p>



<h2 class="wp-block-heading">Fonction de formatage d&rsquo;URLs</h2>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">&lt;?php
function ReecrireUrl($titre)
{
   //Désaccentue la chaîne passée en paramètre
   $titre= SupprimeLesAccents (strtolower($titre));
   //Remplace tous les caractères autres que alphanumérique par des tirets
   $titre= preg_replace('#[^a-z0-9_-]#','-',$titre); 
   while (strpos($titre,'--') !== false){
     $titre= str_replace('--','-',$titre); //Nettoyage des tirets superflus
   }
   return $titre;
}
?></pre>
<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div>The post <a href="https://memo-web.fr/categorie-php-64/">Formater une chaine en URL</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></content:encoded>
					
					<wfw:commentRss>https://memo-web.fr/categorie-php-64/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Comment récupérer ou supprimer  l&#8217;extension d&#8217;un fichier en PHP ?</title>
		<link>https://memo-web.fr/categorie-php-51/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=categorie-php-51</link>
					<comments>https://memo-web.fr/categorie-php-51/#respond</comments>
		
		<dc:creator><![CDATA[t@ra]]></dc:creator>
		<pubDate>Sat, 17 Dec 2011 16:16:28 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Chaînes]]></category>
		<guid isPermaLink="false">http://memo-web.fr/?p=166</guid>

					<description><![CDATA[<p>$nomdufichier='mon_fichier.gif'; Fonction utile pour récupérer l&#8217;extension d&#8217;un fichier en php : En utilisant la fonction PHP&#160;strrchr&#160;($chaine, $i) qui renvoie le segment de chaîne qui suit et contient la dernière occurance&#160;de $i . $extension=strrchr($nomdufichier,'.'); $extension&#160;contient « .gif » Si l&#8217;on veut supprimer le point, on supprime le 1er caractère de la chaîne grâce à la fonction&#160;substr() : Fonction [&#8230;]</p>
The post <a href="https://memo-web.fr/categorie-php-51/">Comment récupérer ou supprimer  l’extension d’un fichier en PHP ?</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></description>
										<content:encoded><![CDATA[<pre class="wp-block-preformatted">$nomdufichier='mon_fichier.gif'; </pre>



<h3 class="wp-block-heading">Fonction utile pour récupérer l&rsquo;extension d&rsquo;un fichier en php :</h3>



<p>En utilisant la fonction PHP&nbsp;<strong>strrchr&nbsp;</strong>($chaine, $i) qui renvoie le segment de chaîne qui suit et contient la dernière occurance&nbsp;de $i .</p>



<pre class="wp-block-preformatted">$extension=strrchr($nomdufichier,'.');
</pre>



<p><em>$extension</em>&nbsp;contient « .gif »</p>



<p>Si l&rsquo;on veut supprimer le point, on supprime le 1er caractère de la chaîne grâce à la fonction&nbsp;<strong>substr</strong>() :</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">$extension=substr($extension,1) ;  </pre>



<h3 class="wp-block-heading">Fonction utilie pour savoir si un fichier contient une extension donnée :</h3>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">if (preg_match('`.swf`',$nomfichier)){echo 'fichier flash!';}</pre>



<h3 class="wp-block-heading">Fonction utile pour supprimer l&rsquo;extension d&rsquo;un fichier en PHP :</h3>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">$pos_point = strpos($nomdufichier, '.');
$nomdufichier_sans_extension = substr($nomdufichier, 0, $pos_point); </pre>



<p><em>$nomdufichier_sans_extension</em>&nbsp;contient « mon_fichier »</p>
<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div>The post <a href="https://memo-web.fr/categorie-php-51/">Comment récupérer ou supprimer  l’extension d’un fichier en PHP ?</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></content:encoded>
					
					<wfw:commentRss>https://memo-web.fr/categorie-php-51/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ucfirst ou Convertir la première lettre d&#8217;une chaine en majuscule</title>
		<link>https://memo-web.fr/categorie-php-17/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=categorie-php-17</link>
					<comments>https://memo-web.fr/categorie-php-17/#respond</comments>
		
		<dc:creator><![CDATA[t@ra]]></dc:creator>
		<pubDate>Wed, 07 Dec 2011 16:25:56 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Chaînes]]></category>
		<guid isPermaLink="false">http://memo-web.fr/?p=180</guid>

					<description><![CDATA[<p>ucfirst()&#160;est une fonction très pratique pour passer en majuscule le premier caractère d&#8217;une chaine La fonction&#160;lcfirst()&#160;quand à elle permet de passer en minuscule le premier caractère d&#8217;une chaîne</p>
The post <a href="https://memo-web.fr/categorie-php-17/">ucfirst ou Convertir la première lettre d’une chaine en majuscule</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></description>
										<content:encoded><![CDATA[<p><strong>ucfirst()</strong>&nbsp;est une fonction très pratique pour passer en majuscule le premier caractère d&rsquo;une chaine</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">$ChaineFormatee=ucfirst($chaine);
&nbsp;
</pre>



<p>La fonction<strong>&nbsp;lcfirst()</strong>&nbsp;quand à elle permet de passer en minuscule le premier caractère d&rsquo;une chaîne</p>
<div style="margin-top: 0px; margin-bottom: 0px;" class="sharethis-inline-share-buttons" ></div>The post <a href="https://memo-web.fr/categorie-php-17/">ucfirst ou Convertir la première lettre d’une chaine en majuscule</a> first appeared on <a href="https://memo-web.fr">Le MEMO du Web Développeur</a>.]]></content:encoded>
					
					<wfw:commentRss>https://memo-web.fr/categorie-php-17/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
