foobar
73ab5708b4
Fixed typo..
2002-05-31 23:20:04 +00:00
Brad LaFountain
fa60d31d27
Changed PHP_EXPORTS to DOMXML_EXPORTS as Edin Kadribasic suggested
2002-05-31 13:38:58 +00:00
Harald Radi
d3383bab2d
added wez to the com extension
2002-05-31 10:06:19 +00:00
Harald Radi
d1b01b92ab
added wez and ordered names alphabetically
2002-05-31 09:43:22 +00:00
Brad LaFountain
5313321e08
initalize variable in domxml_doc_document_element()
2002-05-31 06:14:29 +00:00
Brad LaFountain
2eb29ca917
defined PHP_EXPORTS for exporting php_domobject_new()
2002-05-31 06:01:50 +00:00
Brad LaFountain
e6fa086537
added the ability to use new keywork with domxmls objects "new DomDocument()"
...
instead of xmldoc. This also allows you to create nodes without having
a whole document "new DomElement("foo")".
moved DOMXML_API_VERSION to php_domxml.h
exposed php_domobject_new for other extensions to use
removed some un-needed code
2002-05-31 05:58:40 +00:00
Harald Radi
acc1021f0d
#forgot something
2002-05-30 23:17:48 +00:00
Harald Radi
d3ca5abab7
@ Added missing AddRef() calls in the COM extension. This should
...
@ fix weird behaviour (in particular with ADODB). (Harald)
# waah, this suxx
2002-05-30 23:07:23 +00:00
Markus Fischer
39f16dbc65
- Tell the user why his session doesn't work if he uses custom session_id()s.
2002-05-30 11:41:37 +00:00
Den V. Tsopa
509df14ff4
Fixes some dummy errors (again).
2002-05-30 10:10:16 +00:00
Den V. Tsopa
1da8768cae
Added GB2312 alias for CN-GB
2002-05-29 09:15:28 +00:00
Derick Rethans
b049f9bf17
- Fix for bug #17503
2002-05-29 08:40:43 +00:00
Den V. Tsopa
9cd5bf77a7
@Fixed some dummy errors. (dets)
2002-05-29 08:33:23 +00:00
Hartmut Holzgraefe
f404c23b5f
moved to PECL
2002-05-27 13:14:02 +00:00
Stig Bakken
90efd3abe6
@Fix segfault in version_compare() (Stig)
2002-05-26 12:01:30 +00:00
Rui Hirokawa
d3012238bc
reverted my patch.
2002-05-24 22:30:24 +00:00
Rui Hirokawa
ee480a7ec8
reverted patch to support iso2022kr.
2002-05-24 22:28:42 +00:00
Sander Roobol
b80c27f7ae
Fix <head> and <body> tags in phpinfo() output ( #17411 )
2002-05-24 17:25:40 +00:00
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)
2002-05-23 21:48:27 +00:00
Andrei Zmievski
001b4c71e4
This code adds string offset capturing in preg_split() results. Original
...
patch by David Brown, modified by me.
2002-05-23 17:22:05 +00:00
Andi Gutmans
fc059f5e40
- Fix typo
2002-05-23 14:28:14 +00:00
Wez Furlong
e202ad5c8b
Add simple test case for proc_open
2002-05-23 10:46:06 +00:00
Wez Furlong
4fd00c9502
Fix (stupid) segfault. #17379
2002-05-23 10:17:07 +00:00
Derick Rethans
708f980389
- Fix unchecked return values with parameters to proc_open. (Fixes
...
bug #17375 )
2002-05-23 07:52:03 +00:00
Derick Rethans
c37d2a97ac
- Fix errormessage and whitespace
2002-05-23 07:08:25 +00:00
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.
2002-05-23 07:03:43 +00:00
Wez Furlong
762effcf60
Add documentation comment for properties in com_print_typeinfo
2002-05-21 22:44:10 +00:00
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);
2002-05-21 22:41:45 +00:00
Andrei Zmievski
f08e0ef9d4
Fix bug #16939 .
2002-05-21 21:23:20 +00:00
Wez Furlong
8a53a89a94
Correct usage of convert_to_string_ex which is not allowed to zval*
2002-05-21 20:57:04 +00:00
Wez Furlong
c05834fbce
Reformat some comments.
2002-05-21 20:51:31 +00:00
Wez Furlong
e2b9f0d964
Fix a flag, remove an old comment.
2002-05-21 20:46:08 +00:00
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;
?>
2002-05-21 18:58:11 +00:00
Hartmut Holzgraefe
8a6f6fca1d
ZTS issues fixed
2002-05-21 12:02:44 +00:00
Hartmut Holzgraefe
7f732313a7
not beautifull (yet), but should fix ZTS builds
2002-05-21 10:14:12 +00:00
Sebastian Bergmann
4405b313c5
ZTS fixes.
2002-05-21 07:10:26 +00:00
Den V. Tsopa
4974e6073e
Added russian codepages (koi8-r,cp1251,cp866) support.
2002-05-21 07:00:34 +00:00
Edin Kadribasic
16e9e77e2a
Fix for #17315 . Requires client library 7.2 or greater to compile.
2002-05-21 01:03:13 +00:00
Markus Fischer
94501132c6
- Fix posix_isatty() and posix_ttyname() ( Closes #17323 )
2002-05-20 23:26:13 +00:00
Markus Fischer
601cf3690c
- Add safe_mode/uid and open_basedir check to zip_open() ( closes #16927 ).
2002-05-20 18:33:08 +00:00
Markus Fischer
720a890f84
- ZTS gotcha
2002-05-20 17:41:35 +00:00
Markus Fischer
96bf2d1deb
- Add open_basedir check for all functions using php_stat() (filesize, stat,
...
etc), closes #11563 .
2002-05-20 17:18:18 +00:00
Harald Radi
e47a667cc9
integrating wez's patch
2002-05-20 15:35:57 +00:00
Yasuo Ohgaki
62b8c29083
Fixed possible pg_lo_write() overflow and make it more fail safe.
2002-05-20 01:40:22 +00:00
Wez Furlong
fc964e88d3
Added generic COM wrapper for PHP objects.
2002-05-20 01:31:48 +00:00
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().
2002-05-20 01:02:29 +00:00
Edin Kadribasic
544694255a
Added glob() support for windows.
2002-05-19 14:32:24 +00:00
foobar
3b9401a3ed
DO NOT use C++ comments!
2002-05-19 00:02:07 +00:00
Christian Stocker
ccd962e155
- delete attributes as well in php_free_xml_node
...
- more consistent naming in phpinfo()
2002-05-18 20:19:43 +00:00