1
0
mirror of https://github.com/php/doc-ru.git synced 2026-03-28 01:32:09 +01:00
Files
archived-doc-ru/reference/strings/functions/str-ends-with.xml
2023-01-23 08:52:54 +03:00

151 lines
4.3 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 1bf3ed99f67e627624fca77c15601836b7febf65 Maintainer: sergey Status: ready -->
<!-- Reviewed: no -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.str-ends-with">
<refnamediv>
<refname>str_ends_with</refname>
<refpurpose>Проверяет, заканчивается ли строка заданной подстрокой</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>bool</type><methodname>str_ends_with</methodname>
<methodparam><type>string</type><parameter>haystack</parameter></methodparam>
<methodparam><type>string</type><parameter>needle</parameter></methodparam>
</methodsynopsis>
<para>
Выполняет проверку с учётом регистра, указывающую,
заканчивается ли <parameter>haystack</parameter> подстрокой <parameter>needle</parameter>.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>haystack</parameter></term>
<listitem>
<para>
Строка для поиска.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>needle</parameter></term>
<listitem>
<para>
Подстрока для поиска в <parameter>haystack</parameter>.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Возвращает &true;, если <parameter>haystack</parameter> заканчивается подстрокой
<parameter>needle</parameter>, &false; в противном случае.
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Использование пустой строки <literal>''</literal></title>
<programlisting role="php">
<![CDATA[
<?php
if (str_ends_with('абв', '')) {
echo "Все строки заканчиваются пустой строкой";
}
?>
]]>
</programlisting>
&example.outputs;
<screen role="php">
<![CDATA[
Все строки заканчиваются пустой строкой
]]>
</screen>
</example>
<example>
<title>Демонстрация чувствительности к регистру</title>
<programlisting role="php">
<![CDATA[
<?php
$string = 'ленивая лиса перепрыгнула через забор';
if (str_ends_with($string, 'забор')) {
echo "Строка заканчивается на 'забор'\n";
}
if (str_ends_with($string, 'Забор')) {
echo 'Строка заканчивается на "Забор"';
} else {
echo '"Забор" не найден, потому что регистр не соответствует';
}
?>
]]>
</programlisting>
&example.outputs;
<screen role="php">
<![CDATA[
Строка заканчивается на 'забор'
"Забор" не найден, потому что регистр не соответствует
]]>
</screen>
</example>
</para>
</refsect1>
<refsect1 role="notes">
&reftitle.notes;
&note.bin-safe;
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>str_contains</function></member>
<member><function>str_starts_with</function></member>
<member><function>stripos</function></member>
<member><function>strrpos</function></member>
<member><function>strripos</function></member>
<member><function>strstr</function></member>
<member><function>strpbrk</function></member>
<member><function>substr</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
-->