summaryrefslogtreecommitdiff
path: root/ext/standard
Commit message (Collapse)AuthorAgeFilesLines
* - Add Zend API No. to phpinofo() outputDerick Rethans2002-05-021-0/+6
|
* - Fix String is not zero-terminated error in base64_decodeDerick Rethans2002-05-011-1/+1
|
* Fix ZE1 buildStanislav Malyshev2002-04-301-2/+2
|
* Touch fileSascha Schumann2002-04-301-1/+1
|
* ZE2 compatibility fixStanislav Malyshev2002-04-301-6/+7
|
* ZE2 compatibility fixesStanislav Malyshev2002-04-301-2/+4
|
* revert last bogus change. There is bug in is_file()foobar2002-04-301-1/+1
|
* Fix ZTS build.Sebastian Bergmann2002-04-301-4/+4
|
* Make use of new flag so that we can buffer http headers when we know thatWez Furlong2002-04-301-5/+8
| | | | | the stream is not intended to be used in require/include.
* Implement user-space funtions to operate on stream contexts.Wez Furlong2002-04-303-12/+125
|
* Fix is_file test.Wez Furlong2002-04-301-1/+1
| | | | | # Is there a good reason for having the actual test in an include file??
* Add comments for the fixStanislav Malyshev2002-04-291-0/+2
|
* Fix here tooStanislav Malyshev2002-04-291-1/+1
|
* Yet another serialization fix - for incomplete classStanislav Malyshev2002-04-291-2/+4
|
* Touch generated fileSascha Schumann2002-04-281-1/+1
| | | | | # is it really so hard to remember this?
* Fix couple of nasty serializer bugs:Stanislav Malyshev2002-04-283-157/+187
| | | | | | | | | | | | | a) When array unserializer encounters less data than it expects (like: a:1:{}) it crashes. I don't understand exactly why it does, but the fact is it does. So now it should catch "}" and bail out. b) When array/object data are serialized, the count is written by hash count. However, it can be that in-loop check fails and less data than expected will then be written into the array. Which, due to a), would crash on unserialize. So now it will write empty entries in place of entries it cannot serialize (the other choice would be make two passes on the data, which I don't like).
* timestampThies C. Arntzen2002-04-281-1/+1
|
* revert session_set_userdata - diffent patch will come shortlyThies C. Arntzen2002-04-283-82/+35
|
* touch file. Please commit first the .re file and afterwards the .c source. ↵foobar2002-04-281-1/+1
| | | | Otherwise, timestamps will be broken.
* Add test case for file_exist/is_fileYasuo Ohgaki2002-04-282-0/+30
|
* part 2 of last commitThies C. Arntzen2002-04-271-29/+51
|
* @ - added session_set_userdata() which enables you to specify one variableThies C. Arntzen2002-04-272-7/+32
| | | | | | @ that will be kept in the browser in addition to the session-id. This @ only works when using trans-sid sessions (no cookie). (thies)
* Fixed bug #16861.Yasuo Ohgaki2002-04-263-5/+11
| | | | | | | | | touch sets wrong atime or mtime when they are not specified. touch silently failed when HAVE_UTIME is not defined. (This needs more consideration. Which platform does not support it?) # Derick, after HAVE_UTIME issue is resovled, this should be merged. # or we can just merge 1st problem for now.
* update generated filejim winstead2002-04-251-26/+24
|
* Do not add redundant id attribute. It doesn't make the output anyjim winstead2002-04-251-2/+0
| | | | | more standards compliant.
* fixed directory access problem when direcory name is encoded in japanese ↵Rui Hirokawa2002-04-251-5/+5
| | | | Shift_JIS encoding.
* Touch generated file to increase timestampSascha Schumann2002-04-251-1/+1
|
* - Fix for bug #16811Derick Rethans2002-04-251-0/+1
|
* - Fix for bug 16810 (XHTML compliance)Derick Rethans2002-04-252-23/+27
|
* Fix Bug #14795.Andrei Zmievski2002-04-241-8/+10
|
* Fix unwanted type conversion in array_merge_recursive (Bug #14990).Andrei Zmievski2002-04-241-0/+1
|
* remove unnecessary castsSascha Schumann2002-04-221-1/+1
| | | | | | # if you mind the bogus warnings, you can either switch the compiler # or decrease the warning level
* fixes a warning when compiling under win32Harald Radi2002-04-221-1/+1
|
* simplify and improve speed of smart_str_print_long.Sascha Schumann2002-04-212-35/+41
| | | | | also add a variant for unsigned numbers.
* Make scheme part decoding rfc2396 compliant.Wez Furlong2002-04-191-2/+0
| | | | | | Change zlib:// and bzip2:// to compress.zlib:// and compress.bzip2:// Tidy up old socket/network code/comments.
* Remove compiler warningsYasuo Ohgaki2002-04-191-1/+1
|
* Always initialize wrappers, regardless of PG(allow_url_fopen).Wez Furlong2002-04-165-76/+39
| | | | | | | | | | | | Add is_url field to wrapper structure; the stream wrapper openers will disallow opening is is_url && !PG(allow_url_fopen). Add infrastructure for stat($url) and opendir($url). Tidy up/centralize code that locates and instantiates wrappers for the various operations. Implement opendir for plain files. Make the PHP opendir and dir functions use the streams implementations. Add modelines for syntax highlighting the pear scripts in vim
* Fix declarations (Thanks Sebastian)Wez Furlong2002-04-111-1/+1
|
* thread safeMarcus Boerger2002-04-111-18/+62
|
* fix warningMarcus Boerger2002-04-111-1/+1
|
* fix testproblemMarcus Boerger2002-04-111-1/+1
|
* Implement stream context and status notification system.Wez Furlong2002-04-108-60/+243
| | | | | | Bump the BC for zlib notice to a warning # See my RFC to php-dev a few days ago
* - Revert that change. Added a warning about this.foobar2002-04-082-0/+31
|
* There's really no point in allowing using the system regex library.foobar2002-04-082-30/+0
|
* Using system regex lib seems not to work quite well when compiled with Apache.foobar2002-04-081-10/+5
|
* fix and regression test for Bug #16473Hartmut Holzgraefe2002-04-072-14/+18
|
* fix for #16469Wez Furlong2002-04-071-1/+1
|
* Fix gzip/bz2 builds for WindowsZeev Suraski2002-04-052-24/+24
|
* - OS X support for dynamically loaded extensions. (patch by Marko)foobar2002-04-041-4/+4
| | | | | # NEWS entry coming up..
* fix TS buildWez Furlong2002-04-031-2/+2
|