Re: [PHP] Documentation on features not in current release (SimpleXML PHP5 Beta 3)

2004-01-17 Thread Chris Shiflett
--- Jonathan <[EMAIL PROTECTED]> wrote:
> Where would I be able to find a function reference or documentation
> on new features that are not documented in the official manual?

Usually nowhere. Features that have yet to be documented are probably so
experimental, new, unfinished, or whatever, that documentation written now
would be wrong by the time those features are stable.

However, if you're just wanting to learn more about SimpleXML
specifically, Adam wrote a nice article about it yesterday. You can find
it here:

http://www.onlamp.com/pub/a/php/2004/01/15/simplexml.html

Hope that helps.

Chris

=
Chris Shiflett - http://shiflett.org/

PHP Security Handbook
 Coming mid-2004
HTTP Developer's Handbook
 http://httphandbook.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] documentation on "<<<"

2003-10-01 Thread Chris W. Parker
Rich Fox 
on Wednesday, October 01, 2003 10:08 AM said:

> Can someone point me to documentation on the <<< operator? I am
> wondering if there are some quirks I don't know about. Yet I can't
> find it documented on the php website.

I don't know the answer to your question but...

Did you know that it's called the heredoc operator? You
may be able to find information if you search google for "heredoc php"
and/or "heredoc operator php".


hth,
Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] documentation on "<<<"

2003-10-01 Thread Eugene Lee
On Wed, Oct 01, 2003 at 01:07:35PM -0400, Rich Fox wrote:
: 
: Can someone point me to documentation on the <<< operator? I am wondering if
: there are some quirks I don't know about. Yet I can't find it documented on
: the php website.

Try searching for "heredoc".

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] documentation on pg_escape_string()

2003-03-17 Thread John W. Holmes
> Anyone know where to find documentation on this? Who knows what it
> escapes?

I always look in the manual when I'm looking for documentation, but
that's just me. Hell, call me crazy, but I'd probably look in the
chapter on the PG functions... but that's just me... and I have no idea
what I'm doing.

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] documentation on pg_escape_string()

2003-03-17 Thread Joe Conway
Dennis Gearon wrote:
Anyone know where to find documentation on this? Who knows what it escapes?

From PostgreSQL source (~/pgsql/src/interfaces/libpq/fe-exec.c):

8<
/* ---
 * Escaping arbitrary strings to get valid SQL strings/identifiers.
 *
 * Replaces "\\" with "" and "'" with "''".
 * length is the length of the buffer pointed to by
 * from.  The buffer at to must be at least 2*length + 1 characters
 * long.  A terminating NUL character is written.
 * ---
 */
size_t
PQescapeString(char *to, const char *from, size_t length)
8<
I presume the PHP function is just a wrapper around this one (but did 
not actually check).

HTH,

Joe



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php