Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > 05cd670d8a02b2b4a0ffb1756f2e8308 > files > 10244

php-manual-zh-5.2.4-1mdv2008.1.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>token_get_all</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="PHP 手册"
HREF="index.html"><LINK
REL="UP"
TITLE="Tokenizer Functions"
HREF="ref.tokenizer.html"><LINK
REL="PREVIOUS"
TITLE="Tokenizer Functions"
HREF="ref.tokenizer.html"><LINK
REL="NEXT"
TITLE="token_name"
HREF="function.token-name.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=UTF-8"></HEAD
><BODY
CLASS="refentry"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP 手册</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="ref.tokenizer.html"
ACCESSKEY="P"
>上一页</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.token-name.html"
ACCESSKEY="N"
>下一页</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.token-get-all"
></A
>token_get_all</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN235330"
></A
><P
>    (PHP 4 &#62;= 4.2.0, PHP 5)</P
>token_get_all&nbsp;--&nbsp;Split given source into PHP tokens</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN235333"
></A
><H2
>说明</H2
>array <B
CLASS="methodname"
>token_get_all</B
> ( string source )<BR
></BR
><P
>&#13;   <B
CLASS="function"
>token_get_all()</B
> parses the given <CODE
CLASS="parameter"
>source</CODE
> 
   string into PHP language tokens using the Zend engine's lexical scanner.
  </P
><P
>&#13;   For a list of parser tokens, see <A
HREF="tokens.html"
>附录 R</A
>, or use 
   <A
HREF="function.token-name.html"
><B
CLASS="function"
>token_name()</B
></A
> to translate a token value into its string
   representation.
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN235347"
></A
><H2
>参数</H2
><P
>&#13;   <P
></P
><DIV
CLASS="variablelist"
><DL
><DT
><CODE
CLASS="parameter"
>source</CODE
></DT
><DD
><P
>&#13;       The PHP source to parse.
      </P
></DD
></DL
></DIV
>
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN235356"
></A
><H2
>返回值</H2
><P
>&#13;   An array of token identifiers. Each individual token identifier is either
   a single character (i.e.: <TT
CLASS="literal"
>;</TT
>, <TT
CLASS="literal"
>.</TT
>, 
   <TT
CLASS="literal"
>&#62;</TT
>, <TT
CLASS="literal"
>!</TT
>, etc...),
   or a two element array containing the token index in element 0, and the string
   content of the original token in element 1.
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN235363"
></A
><H2
>范例</H2
><P
>&#13;   <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN235366"
></A
><P
><B
>例 1. <B
CLASS="function"
>token_get_all()</B
> examples</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><code><font color="#000000">
<font color="#0000BB">&lt;?php<br />$tokens </font><font color="#007700">= </font><font color="#0000BB">token_get_all</font><font color="#007700">(</font><font color="#DD0000">'&lt;?php echo; ?&gt;'</font><font color="#007700">); </font><font color="#FF8000">/* =&gt; array(<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;array(T_OPEN_TAG, '&lt;?php'), <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;array(T_ECHO, 'echo'),<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;array(T_CLOSE_TAG, '?&gt;') ); */<br /><br />/* Note in the following example that the string is parsed as T_INLINE_HTML<br />&nbsp;&nbsp;&nbsp;rather than the otherwise expected T_COMMENT (T_ML_COMMENT in PHP &lt;5).<br />&nbsp;&nbsp;&nbsp;This is because no open/close tags were used in the "code" provided.<br />&nbsp;&nbsp;&nbsp;This would be equivalent to putting a comment outside of &lt;?php ?&gt; tags in a normal file. */<br /></font><font color="#0000BB">$tokens </font><font color="#007700">= </font><font color="#0000BB">token_get_all</font><font color="#007700">(</font><font color="#DD0000">'/* comment */'</font><font color="#007700">); </font><font color="#FF8000">// =&gt; array(array(T_INLINE_HTML, '/* comment */'));<br /></font><font color="#0000BB">?&gt;</font>
</font>
</code></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
>
  </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="ref.tokenizer.html"
ACCESSKEY="P"
>上一页</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>起始页</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.token-name.html"
ACCESSKEY="N"
>下一页</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Tokenizer Functions</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.tokenizer.html"
ACCESSKEY="U"
>上一级</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>token_name</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>