History log of /php-src/ (Results 114401 – 114425 of 114804)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
f1f4e6f428-May-1999 Rasmus Lerdorf

Some innocent cleanups

a5138d2727-May-1999 Andrey Hristov

We don't need those there.

e10e4dbe27-May-1999 Andrey Hristov

Really fix the configuration now so that it's possible to compile both
against the bundled PCRE library and the one external to the source tree.
Crossing my fingers while Zeev compiles this.

Really fix the configuration now so that it's possible to compile both
against the bundled PCRE library and the one external to the source tree.
Crossing my fingers while Zeev compiles this. :)

show more ...

96434e4827-May-1999 Stig Bakken

self-contained extensions please :-)

83cdc94727-May-1999 Zeev Suraski

Generate Visual Studio compatible error messages when compiling under Win32

3b5972ed27-May-1999 Zeev Suraski

Fix the AiCount issue with objects

1f985ede27-May-1999 Zeev Suraski

Moved all #define's for SET_ and RETURN_ to zend_API.h

5d0a759927-May-1999 Sascha Schumann

- fix CGI build (at least)

16ec460827-May-1999 Sascha Schumann

add rfc1867.c

36947fc427-May-1999 Zeev Suraski

Fix pcre build

064a16c727-May-1999 Zeev Suraski

Moved all SET_ and RETURN_ macros to Zend
Fixed all RETVAL_ macros

66f850e526-May-1999 Andrey Hristov

-Added PCRE library source
-Updated configuration process

d73c638526-May-1999 Andrey Hristov

Added preg_split. Same syntax as regular split().

ff29e85726-May-1999 Andrey Hristov

Fixing a couple of long standing bugs.

0062ae6226-May-1999 Andrey Hristov

A few changes here.

First of all, as per extensive discussion on the list, the functions are now
prefixed with "preg" instead of "pcre".

Secondly, global matching is now possibl

A few changes here.

First of all, as per extensive discussion on the list, the functions are now
prefixed with "preg" instead of "pcre".

Secondly, global matching is now possible using preg_match_all. Please, give
suggestions on a better name if this one doesn't sit well with you. Possible
names are preg_global_match and preg_gmatch.

preg_match_all takes 4 arguments: a regex pattern, a subject string,
the array for capturing subpatterns, and a parameter that tells how the results
in the subpatterns array are arranged.

Basically, preg_match_all will go through the subject string and try to capture
all the matches that it finds, not just the first one like preg_match.

4th parameter can be PREG_PATTERN_ORDER (default) or PREG_SET_ORDER.

Example:
preg_match_all("|</?([^>]+)>|", "<div align=left>a test</div>", $out, PREG_PATTERN_ORDER);

This returns results so that $out[0] is an array of full pattern matches, $out[1] is an array
of first captured subpattern matches, and so on.

$out[0] -> ("<div align=left>", "</div>")
$out[1] -> ("div align=left", "div")

Example:
preg_match_all("|</?([^>]+)>|", "<div align=left>a test</div>", $out, PREG_SET_ORDER);

This returns results so that $out[0] is an array of first full pattern match and subpatterns,
$out[1] is an array of second full pattern match and subpatterns.

$out[0] -> ("<div align=left>", "div align=left")
$out[1] -> ("</div>", "div")

If anyone has a better name for these PREG_ constants and also which one should be the default,
I'd like to hear it.

show more ...

033858e125-May-1999 Zeev Suraski

Avoid crashing if an error occurs before we open the first file.

cf58b7ef25-May-1999 Zeev Suraski

Add container for file-upload. It's not quite implemented yet.

6155d91e25-May-1999 Andrey Hristov

Just a little sanity check.

4f545f9c25-May-1999 Zeev Suraski

Allow unregistering content types as well.

72f6e82325-May-1999 Zeev Suraski

* Add generic POST content-type support. Only application/x-www-form-urlencoded
supported at this time, but the framework allows for any other types, including
runtime addition of types.

7b98592224-May-1999 Zeev Suraski

include regex in Win32 build

e115fdc624-May-1999 Zeev Suraski

The last fix was wrong

cbcd462d24-May-1999 Zeev Suraski

Another operators fix

97107dc423-May-1999 Zeev Suraski

boolean comparison didn't work with smaller-than and greater-than, something that
fucked up berber's site a bit. fixed.

0eb500ce23-May-1999 Zeev Suraski

Thou shalt use the API, and thou shalt be safe

1...<<4571457245734574457545764577457845794580>>...4593