📄 ebrequest.html
字号:
</blockquote><h1>getCookieNext( )</h1> <blockquote></a></blockquote><h4>NAME</h4><blockquote>
<p><strong>getCookieNext( )</strong> - get the next paramter by "name"</p>
</blockquote><h4>SYNOPSIS</h4><blockquote><p>
<pre>char * getCookieNext
(
char * name,
int * pindex
)
</pre>
</blockquote><h4>DESCRIPTION</h4><blockquote><p>
this routine is search the next cookie by "name", the start index is to
specify the offset in the search list.
<p>
</blockquote><h4>NOTE</h4><blockquote><p>
<p>
if not found the *pstart will return a number < 0
<pre>char * p;
int offset;
for (offset=0; offset >=0; )
{
p = getCookieNext("xxx", &offset);
print("%s\n", p);
}
</pre>
</blockquote><h4>RETURN</h4><blockquote><p>
pointer the value, or blank string "" if not found
<p>
</blockquote><h4>SEE ALSO</h4><blockquote><p>
<b><a href="./ebrequest.html#top">ebrequest</a></b>, <b><a href="./ebrequest.html#getParameterNext">getParameterNext</a>( )</b>
<hr>
<a name="isSetCookie"></a>
<p align=right>
<a href="rtnIndex.htm"><i>eyBuildLib : Routines</i></a></p>
</blockquote><h1>isSetCookie( )</h1> <blockquote></a></blockquote><h4>NAME</h4><blockquote>
<p><strong>isSetCookie( )</strong> - check a query exist or not</p>
</blockquote><h4>SYNOPSIS</h4><blockquote><p>
<pre>BOOL isSetCookie
(
char * name
)
</pre>
</blockquote><h4>DESCRIPTION</h4><blockquote><p>
this routine is to check a query exist or not.
<p>
</blockquote><h4>NOTE</h4><blockquote><p>
query name and query value may be blank string(""), but
not at the same time. Eg.: "?=v1&n1=&&" means there to item "=v1" and "n1="
<p>
</blockquote><h4>RETURN</h4><blockquote><p>
TRUE/FALSE
<p>
</blockquote><h4>SEE ALSO</h4><blockquote><p>
<b><a href="./ebrequest.html#top">ebrequest</a></b>, <b><a href="./ebrequest.html#isSetQuery">isSetQuery</a>( )</b>
<hr>
<a name="getCookieNumber"></a>
<p align=right>
<a href="rtnIndex.htm"><i>eyBuildLib : Routines</i></a></p>
</blockquote><h1>getCookieNumber( )</h1> <blockquote></a></blockquote><h4>NAME</h4><blockquote>
<p><strong>getCookieNumber( )</strong> - get the number of cookie in cookie list (for GET/POST)</p>
</blockquote><h4>SYNOPSIS</h4><blockquote><p>
<pre>int getCookieNumber ()</pre>
</blockquote><h4>DESCRIPTION</h4><blockquote><p>
this routine is to return the cookie number (for GET/POST)
<p>
</blockquote><h4>RETURN</h4><blockquote><p>
number of cookies.
<p>
</blockquote><h4>SEE ALSO</h4><blockquote><p>
<b><a href="./ebrequest.html#top">ebrequest</a></b>, <b><a href="./ebrequest.html#getCookieNumber">getCookieNumber</a>( )</b>
<hr>
<a name="getCookieByIndex"></a>
<p align=right>
<a href="rtnIndex.htm"><i>eyBuildLib : Routines</i></a></p>
</blockquote><h1>getCookieByIndex( )</h1> <blockquote></a></blockquote><h4>NAME</h4><blockquote>
<p><strong>getCookieByIndex( )</strong> - get the cookie by index</p>
</blockquote><h4>SYNOPSIS</h4><blockquote><p>
<pre>char * getCookieByIndex
(
char * * name,
int index
)
</pre>
</blockquote><h4>DESCRIPTION</h4><blockquote><p>
this routine is to return the cookie name and value by index. if the index
is out of range, the value name should be set to NULL, and the value should
be set to blank string ("").
<p>
</blockquote><h4>RETURN</h4><blockquote><p>
pointer the cookie item value, or "" if no such item.
<p>
</blockquote><h4>SEE ALSO</h4><blockquote><p>
<b><a href="./ebrequest.html#top">ebrequest</a></b>, <b>getParameterByIndex( )</b>
<hr>
<a name="cgiPrefix"></a>
<p align=right>
<a href="rtnIndex.htm"><i>eyBuildLib : Routines</i></a></p>
</blockquote><h1>cgiPrefix( )</h1> <blockquote></a></blockquote><h4>NAME</h4><blockquote>
<p><strong>cgiPrefix( )</strong> - make current cgi prefix string</p>
</blockquote><h4>SYNOPSIS</h4><blockquote><p>
<pre>char * cgiPrefix
(
char * pname
)
</pre>
</blockquote><h4>DESCRIPTION</h4><blockquote><p>
</blockquote><h4>RETURNS</h4><blockquote><p>
pointer to a prefix or a blank string ""
</blockquote><h4>SEE ALSO</h4><blockquote><p>
<b><a href="./ebrequest.html#top">ebrequest</a></b>
<hr>
<a name="romPrefix"></a>
<p align=right>
<a href="rtnIndex.htm"><i>eyBuildLib : Routines</i></a></p>
</blockquote><h1>romPrefix( )</h1> <blockquote></a></blockquote><h4>NAME</h4><blockquote>
<p><strong>romPrefix( )</strong> - make current rom prefix string</p>
</blockquote><h4>SYNOPSIS</h4><blockquote><p>
<pre>char * romPrefix
(
char * pname
)
</pre>
</blockquote><h4>DESCRIPTION</h4><blockquote><p>
make current rom prefix string
<p>
</blockquote><h4>RETURNS</h4><blockquote><p>
pointer to a prefix or a blank string ""
</blockquote><h4>SEE ALSO</h4><blockquote><p>
<b><a href="./ebrequest.html#top">ebrequest</a></b>
<hr>
<a name="cgiPrefix2"></a>
<p align=right>
<a href="rtnIndex.htm"><i>eyBuildLib : Routines</i></a></p>
</blockquote><h1>cgiPrefix2( )</h1> <blockquote></a></blockquote><h4>NAME</h4><blockquote>
<p><strong>cgiPrefix2( )</strong> - make current cgi prefix string</p>
</blockquote><h4>SYNOPSIS</h4><blockquote><p>
<pre>char * cgiPrefix2
(
char * pname,
char * psub
)
</pre>
</blockquote><h4>DESCRIPTION</h4><blockquote><p>
</blockquote><h4>RETURNS</h4><blockquote><p>
pointer to a prefix or a blank string ""
</blockquote><h4>SEE ALSO</h4><blockquote><p>
<b><a href="./ebrequest.html#top">ebrequest</a></b>
<hr>
<a name="romPrefix2"></a>
<p align=right>
<a href="rtnIndex.htm"><i>eyBuildLib : Routines</i></a></p>
</blockquote><h1>romPrefix2( )</h1> <blockquote></a></blockquote><h4>NAME</h4><blockquote>
<p><strong>romPrefix2( )</strong> - make current rom prefix string</p>
</blockquote><h4>SYNOPSIS</h4><blockquote><p>
<pre>char * romPrefix2
(
char * pname,
char * psub
)
</pre>
</blockquote><h4>DESCRIPTION</h4><blockquote><p>
make current rom prefix string
<p>
</blockquote><h4>RETURNS</h4><blockquote><p>
pointer to a prefix or a blank string ""
</blockquote><h4>SEE ALSO</h4><blockquote><p>
<b><a href="./ebrequest.html#top">ebrequest</a></b>
<hr>
<a name="thisCgiPrefix"></a>
<p align=right>
<a href="rtnIndex.htm"><i>eyBuildLib : Routines</i></a></p>
</blockquote><h1>thisCgiPrefix( )</h1> <blockquote></a></blockquote><h4>NAME</h4><blockquote>
<p><strong>thisCgiPrefix( )</strong> - make prefix by current page name</p>
</blockquote><h4>SYNOPSIS</h4><blockquote><p>
<pre>char * thisCgiPrefix ()</pre>
</blockquote><h4>DESCRIPTION</h4><blockquote><p>
this routine si to make CGI prefix by current page name
<p>
</blockquote><h4>RETURNS</h4><blockquote><p>
return the prefix by current page name
</blockquote><h4>SEE ALSO</h4><blockquote><p>
<b><a href="./ebrequest.html#top">ebrequest</a></b>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -