1
0
mirror of https://github.com/php/doc-ja.git synced 2026-04-27 01:48:12 +02:00
Files
archived-doc-ja/reference/strings/functions/str-ends-with.xml
T

155 lines
3.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 1bf3ed99f67e627624fca77c15601836b7febf65 Maintainer: mumumu Status: ready -->
<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>
<parameter>haystack</parameter>
<parameter>needle</parameter> で終わる場合、&true; を返します。
そうでない場合、&false; を返します。
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>空文字列 <literal>''</literal> を使う場合</title>
<programlisting role="php">
<![CDATA[
<?php
if (str_ends_with('abc', '')) {
echo "All strings end with the empty string";
}
?>
]]>
</programlisting>
&example.outputs;
<screen role="php">
<![CDATA[
All strings end with the empty string
]]>
</screen>
</example>
<example>
<title>大文字小文字の区別</title>
<programlisting role="php">
<![CDATA[
<?php
$string = 'The lazy fox jumped over the fence';
if (str_ends_with($string, 'fence')) {
echo "The string ends with 'fence'\n";
}
if (str_ends_with($string, 'Fence')) {
echo 'The string ends with "Fence"';
} else {
echo '"Fence" was not found because the case does not match';
}
?>
]]>
</programlisting>
&example.outputs;
<screen role="php">
<![CDATA[
The string ends with 'fence'
"Fence" was not found because the case does not match
]]>
</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
-->