forked from php/doc-en
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document DOMXPath::quote() (php#3909)
- Loading branch information
Showing
2 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- $Revision$ --> | ||
<refentry xml:id="domxpath.quote" xmlns="http://docbook.org/ns/docbook"> | ||
<refnamediv> | ||
<refname>DOMXPath::quote</refname> | ||
<refpurpose> | ||
Quotes a string for use in an XPath expression | ||
</refpurpose> | ||
</refnamediv> | ||
|
||
<refsect1 role="description"> | ||
&reftitle.description; | ||
<methodsynopsis role="DOMXPath"> | ||
<modifier>public</modifier> <modifier>static</modifier> <type>string</type><methodname>DOMXPath::quote</methodname> | ||
<methodparam><type>string</type><parameter>str</parameter></methodparam> | ||
</methodsynopsis> | ||
<simpara> | ||
Quotes <parameter>str</parameter> for use in an XPath expression. | ||
</simpara> | ||
</refsect1> | ||
|
||
<refsect1 role="parameters"> | ||
&reftitle.parameters; | ||
<para> | ||
<variablelist> | ||
<varlistentry> | ||
<term><parameter>str</parameter></term> | ||
<listitem> | ||
<simpara> | ||
The string to quote. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
</variablelist> | ||
</para> | ||
</refsect1> | ||
|
||
<refsect1 role="returnvalues"> | ||
&reftitle.returnvalues; | ||
<simpara> | ||
Returns a quoted string to be used in an XPath expression. | ||
</simpara> | ||
</refsect1> | ||
|
||
<refsect1 role="examples"> | ||
&reftitle.examples; | ||
<example> | ||
<title>Matching attribute value with quotes</title> | ||
<programlisting role="php"> | ||
<![CDATA[ | ||
<?php | ||
$doc = new DOMDocument; | ||
$doc->loadXML(<<<XML | ||
<books> | ||
<book name="'quoted' name">Book title</book> | ||
</books> | ||
XML); | ||
$xpath = new DOMXPath($doc); | ||
$query = "//book[@name=" . DOMXPath::quote("'quoted' name") . "]"; | ||
echo $query, "\n"; | ||
$entries = $xpath->query($query); | ||
foreach ($entries as $entry) { | ||
echo "Found ", $entry->textContent, "\n"; | ||
} | ||
?> | ||
]]> | ||
</programlisting> | ||
&example.outputs; | ||
<screen> | ||
<![CDATA[ | ||
//book[@name="'quoted' name"] | ||
Found Book title | ||
]]> | ||
</screen> | ||
<simpara> | ||
Mixed quote types are also supported: | ||
</simpara> | ||
<programlisting role="php"> | ||
<![CDATA[ | ||
<?php | ||
echo DOMXPath::quote("'different' \"quote\" styles"); | ||
?> | ||
]]> | ||
</programlisting> | ||
&example.outputs; | ||
<screen> | ||
<![CDATA[ | ||
concat("'different' ",'"quote" styles') | ||
]]> | ||
</screen> | ||
</example> | ||
</refsect1> | ||
|
||
<refsect1 role="seealso"> | ||
&reftitle.seealso; | ||
<para> | ||
<simplelist> | ||
<member><methodname>DOMXPath::evaluate</methodname></member> | ||
<member><methodname>DOMXPath::query</methodname></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 | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters