mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-24 17:02:18 +01:00
170 lines
4.6 KiB
XML
170 lines
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: c276fff86c44bc92a9f9105aa66342a731ac78d8 Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: yes -->
|
|
<refentry xml:id="function.strstr" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>strstr</refname>
|
|
<refpurpose>Trouve la première occurrence dans une chaîne</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type class="union"><type>string</type><type>false</type></type><methodname>strstr</methodname>
|
|
<methodparam><type>string</type><parameter>haystack</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>needle</parameter></methodparam>
|
|
<methodparam choice="opt"><type>bool</type><parameter>before_needle</parameter><initializer>&false;</initializer></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Retourne une sous-chaîne de <parameter>haystack</parameter>,
|
|
allant de la première occurrence de <parameter>needle</parameter> (incluse)
|
|
jusqu'à la fin de la chaîne.
|
|
</para>
|
|
<note>
|
|
<para>
|
|
<function>strstr</function> est sensible à la casse. Pour une fonctionnalité
|
|
identique, mais insensible à la casse, reportez-vous à
|
|
<function>stristr</function>.
|
|
</para>
|
|
</note>
|
|
<note>
|
|
<para>
|
|
Si l'objectif est uniquement de déterminer si une certaine valeur de <parameter>needle</parameter>
|
|
se trouve dans <parameter>haystack</parameter>, la fonction <function>str_contains</function> qui est plus rapide
|
|
et moins gourmande en mémoire devrait être utilisée à la place.
|
|
</para>
|
|
</note>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>haystack</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
La chaîne d'entrée.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>needle</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
La chaîne à rechercher.
|
|
</para>
|
|
&strings.parameter.needle.non-string;
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>before_needle</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Si vaut &true;, <function>strstr</function> retourne
|
|
la partie de <parameter>haystack</parameter> avant la première occurrence de
|
|
<parameter>needle</parameter> (<parameter>needle</parameter> étant exclus).
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Retourne la portion de la chaîne, ou &false; si <parameter>needle</parameter>
|
|
n'est pas trouvé.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="changelog">
|
|
&reftitle.changelog;
|
|
<para>
|
|
<informaltable>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>&Version;</entry>
|
|
<entry>&Description;</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
&strings.changelog.needle-empty;
|
|
<row>
|
|
<entry>8.0.0</entry>
|
|
<entry>
|
|
Passing an &integer; as <parameter>needle</parameter> is no longer supported.
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry>7.3.0</entry>
|
|
<entry>
|
|
Passer un &integer; comme <parameter>before_needle</parameter> a été
|
|
rendu obsolète.
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Exemple avec <function>strstr</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$email = 'name@example.com';
|
|
$domain = strstr($email, '@');
|
|
echo $domain; // Affiche : @example.com
|
|
|
|
$user = strstr($email, '@', true);
|
|
echo $user; // Affiche : name
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>stristr</function></member>
|
|
<member><function>strrchr</function></member>
|
|
<member><function>strpos</function></member>
|
|
<member><function>strpbrk</function></member>
|
|
<member><function>preg_match</function></member>
|
|
</simplelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|