Hartmut Holzgraefe
f404c23b5f
moved to PECL
24 years ago
Stig Bakken
90efd3abe6
@Fix segfault in version_compare() (Stig)
24 years ago
Rui Hirokawa
d3012238bc
reverted my patch.
24 years ago
Rui Hirokawa
ee480a7ec8
reverted patch to support iso2022kr.
24 years ago
Sander Roobol
b80c27f7ae
Fix <head> and <body> tags in phpinfo() output ( #17411 )
24 years ago
Derick Rethans
de2c71e7cb
- Added support for compressed SWF (Flash MX) files to getimagesize().
(Fixes feature request #17272 ).
@- Added support to getimagesize() for compressed Flash MX files. (Derick)
24 years ago
Andrei Zmievski
001b4c71e4
This code adds string offset capturing in preg_split() results. Original
patch by David Brown, modified by me.
24 years ago
Andi Gutmans
fc059f5e40
- Fix typo
24 years ago
Wez Furlong
e202ad5c8b
Add simple test case for proc_open
24 years ago
Wez Furlong
4fd00c9502
Fix (stupid) segfault. #17379
24 years ago
Derick Rethans
708f980389
- Fix unchecked return values with parameters to proc_open. (Fixes
bug #17375 )
24 years ago
Derick Rethans
c37d2a97ac
- Fix errormessage and whitespace
24 years ago
Yasuo Ohgaki
b768cf0322
Added 4th parameter to specify enclosure character. Patch by Dean Richard Benson <dean@vipersoft.co.uk>
Spit more meaningful error messages when delim and/or enclosure char is null.
24 years ago
Wez Furlong
762effcf60
Add documentation comment for properties in com_print_typeinfo
24 years ago
Wez Furlong
fbf920d9a3
Enhance com_print_typeinfo.
The main expected use is like this, for figuring out what methods
are allowed for a COM object:
$ie = new COM("InternetExplorer.Application");
// Prints class definition for IE object
com_print_typeinfo($ie, "InternetExplorer.Application", false);
// Prints class definition for default IE event handler
com_print_typeinfo($ie, "InternetExplorer.Application", true);
24 years ago
Andrei Zmievski
f08e0ef9d4
Fix bug #16939 .
24 years ago
Wez Furlong
8a53a89a94
Correct usage of convert_to_string_ex which is not allowed to zval*
24 years ago
Wez Furlong
c05834fbce
Reformat some comments.
24 years ago
Wez Furlong
e2b9f0d964
Fix a flag, remove an old comment.
24 years ago
Wez Furlong
e04d6ca9f7
- Make sure that COM and VARIANT resources are returned as resources
rather than longs.
- Make the IDispatch implementation a bit more generic (and
fix my mess of pointers).
- Add new com_message_pump() function that acts like an interruptible
usleep() that processes COM calls/events.
- Add new com_print_typeinfo() function for "decompiling" the typeinfo
for an interface into PHP script. This is useful for generating a
skeleton for use as an event sink.
- Add new com_event_sink() function for sinking events from COM
objects. Usage is like this:
<?php
class IEEventSinker {
var $terminated = false;
function ProgressChange($progress, $progressmax) {
echo "Download progress: $progress / $progressmax\n";
}
function DocumentComplete(&$dom, $url) {
echo "Document $url complete\n";
}
function OnQuit() {
echo "Quit!\n";
$this->terminated = true;
}
}
$ie = new COM("InternetExplorer.Application");
$sink =& new IEEventSinker();
com_event_sink($ie, $sink, "DWebBrowserEvents2");
$ie->Visible = true;
$ie->Navigate("http://www.php.net ");
while(!$sink->terminated) {
com_message_pump(4000);
}
$ie = null;
?>
24 years ago
Hartmut Holzgraefe
8a6f6fca1d
ZTS issues fixed
24 years ago
Hartmut Holzgraefe
7f732313a7
not beautifull (yet), but should fix ZTS builds
24 years ago
Sebastian Bergmann
4405b313c5
ZTS fixes.
24 years ago
Den V. Tsopa
4974e6073e
Added russian codepages (koi8-r,cp1251,cp866) support.
24 years ago
Edin Kadribasic
16e9e77e2a
Fix for #17315 . Requires client library 7.2 or greater to compile.
24 years ago
Markus Fischer
94501132c6
- Fix posix_isatty() and posix_ttyname() ( Closes #17323 )
24 years ago
Markus Fischer
601cf3690c
- Add safe_mode/uid and open_basedir check to zip_open() ( closes #16927 ).
24 years ago
Markus Fischer
720a890f84
- ZTS gotcha
24 years ago
Markus Fischer
96bf2d1deb
- Add open_basedir check for all functions using php_stat() (filesize, stat,
etc), closes #11563 .
24 years ago
Harald Radi
e47a667cc9
integrating wez's patch
24 years ago
Yasuo Ohgaki
62b8c29083
Fixed possible pg_lo_write() overflow and make it more fail safe.
24 years ago
Wez Furlong
fc964e88d3
Added generic COM wrapper for PHP objects.
24 years ago
Yasuo Ohgaki
c6873da401
Improve large object performance. pg_lo_read() and pg_lo_read_all() should perform
much better now.
Fixed Old API support for pg_lo_import().
24 years ago
Edin Kadribasic
544694255a
Added glob() support for windows.
24 years ago
foobar
3b9401a3ed
DO NOT use C++ comments!
24 years ago
Christian Stocker
ccd962e155
- delete attributes as well in php_free_xml_node
- more consistent naming in phpinfo()
24 years ago
Christian Stocker
b692311fdd
added "domxml API version" in phpinfo() output.
24 years ago
Christian Stocker
def8bc92fc
mem leak fix for domxml_dump_node
24 years ago
Christian Stocker
987ab91efb
fixes memleak in html_dump_mem
24 years ago
Christian Stocker
81c8b8e7a4
rename the object name for comment nodes to domcoment
24 years ago
Markus Fischer
25a616d7aa
- Fix portability issues with empty results on Linux and FreeBSD, add safe_mode
check and simplify code.
# Hartmut, what was the VCWD check for ?!
24 years ago
Christian Stocker
034d684089
WS fixes
24 years ago
Christian Stocker
f275fe0b0b
This should fix a big bad memory leak in freeing the nodes at script end.
24 years ago
Wez Furlong
7ae1630a97
proto tweak
24 years ago
Wez Furlong
c347e0ce88
Add an optional flag to sem_get that specifies if the semaphore should be
automatically released on request shutdown. (#16986 )
Fix a segfault in sem_remove (#17274 )
24 years ago
Cliff Woolley
34d471d22e
Only the last cookie was getting set. (You can have
more than one Set-Cookie: header, as indicated by
http://wp.netscape.com/newsref/std/cookie_spec.html .)
PR: 16626
Submitted by: regina@hitel.net
24 years ago
Christian Stocker
78acc6d865
- replaced domxml_doc_document_element implementation do use libxml2 method
- renamed domxml_add_root to domxml_doc_add_root (and added alias for BC)
- aliased $doc->get_root to domxml_document_element
@ - added domxml_doc_set_root to change the root node (Lukas Schroeder)
24 years ago
Preston L. Bannister
e3ae02255b
Restrict ctype tests to POSIX portable characters (0..127) and add numeric character tests.
24 years ago
Preston L. Bannister
1fdff888ce
Remove leading "./" from include filenames as in PHP this defeats include_path.
24 years ago
Preston L. Bannister
6b2ab5f66d
Adjust dirname() on Win32 to match CWD per drive semantics.
24 years ago