Andrei Zmievski
1f9808b4ee
Clean up call_user_func_*().
2001-05-14 20:56:05 +00:00
Sterling Hughes
803bebb303
Use zend_is_callable to test whether or not the given callback is valid
...
before calling the function.
2001-05-14 20:06:06 +00:00
Sterling Hughes
47ee387d79
Use zend_is_callable() and fix sp of deprecated.
2001-05-14 19:19:03 +00:00
Sterling Hughes
c58fdadc1f
Couple of changes (and a little whitespace correction, sorry to mix :(
...
1) Depreciate the call_user_method*() variety of functions, their
functionality can be easily duplicated by using the call_user_func*()
functions (using the array(&$obj, "method") syntax).
2) Change some pval's to zval's.
3) Improve the error handling mechanism of call_user_func*() to report
an the class name and the function name if an object or class name is
given.
2001-05-14 19:02:23 +00:00
Derick Rethans
6123e2abe0
- Bumbed up the warning level to be in sync with fopen (which is E_WARNING
...
too) (See bug #10856 )
2001-05-14 18:30:07 +00:00
Andrei Zmievski
8a86d17882
Need to use ELS_FETCH() here.
2001-05-14 14:16:44 +00:00
Andrei Zmievski
553e04be2f
@- Fixed a bug in call_user_*() functions that would not allow calling
...
functions/methods that accepted parameters by reference. (Andrei)
* Allow separation of arguments in call_user_* functions - this allows calling
functions that force parameters by reference.
* Use executor function table instead of compiler one.
2001-05-14 13:24:03 +00:00
Wez Furlong
615086c2c9
prototype for php_file_le_stream()
2001-05-12 21:49:13 +00:00
Wez Furlong
7a88deb402
expose streams to other extensions.
2001-05-12 21:48:39 +00:00
Sascha Schumann
afdaee9e47
Nuke more quotes
2001-05-12 11:09:05 +00:00
Jason Greene
c115a75544
Rewrote stat() and fstat() to be memory efficient, due to a recent
...
thread on php-dev.
Note: I added a macro that might have use in other instances, but for now
is included in php_filestat.h
2001-05-11 19:55:44 +00:00
Derick Rethans
04bd8d9174
Tabs please...
2001-05-11 13:34:49 +00:00
Sebastian Bergmann
e69f4dc51c
Fix for bug #10815 .
2001-05-11 13:32:10 +00:00
Jason Greene
7f3291ae8c
Fix is_executable test.
2001-05-11 02:45:49 +00:00
Jason Greene
0ed93d71b2
@fstat() and stat() now return identical output by returning a numerical and
...
@string indexed array (Jason)
(Andrei's suggestion to still allow backwords compatibility.)
2001-05-11 01:47:46 +00:00
Andrei Zmievski
f071e8c566
Always free the callback_name when using zend_is_callable().
2001-05-10 16:30:12 +00:00
Zeev Suraski
4c10e198e2
Fix buggy line split
2001-05-10 14:25:48 +00:00
Andrei Zmievski
8112d1beba
@- Added is_callable() function that can be used to find out whether
...
@ its argument is a valid callable construct. (Andrei)
2001-05-09 20:06:39 +00:00
Zeev Suraski
ff11c36dc5
Avoid crashing if somehow, output is sent in a new thread tha had no requests
2001-05-07 22:00:13 +00:00
James Moore
f3342a5b55
Fix win32 build
2001-05-06 19:20:25 +00:00
Derick Rethans
9f5e71bd42
- Nuke warning
2001-05-06 18:53:45 +00:00
Derick Rethans
b181237582
- Partial fix for bug #9050 , support for "Jan 19 2000" date format
2001-05-06 18:33:49 +00:00
foobar
6c21f7ef0f
Moved ts_alloca_id() into MINIT like Andi requested.
2001-05-06 17:55:10 +00:00
foobar
8e006f81af
Fix bug: #8834 . Now there should be more random salts..
2001-05-06 16:54:27 +00:00
foobar
9d1817ed7f
Fix bug: #10323 . Every value outputted is now escaped.
2001-05-06 15:20:56 +00:00
Wez Furlong
4f943b6012
Fixed win32 build problem.
2001-05-06 09:39:11 +00:00
Wez Furlong
3ffb8e3800
Nuke buffering from php_streams, move connect_nonb() from fsock.c to network.c
...
and rename to php_connect_nonb().
Use php_connect_nonb() instead of connect() in php_hostconnect() -> timeouts
should now work in php_hostconnect().
sock streams abstraction now uses php_sockbuf as the "abstract" pointer.
2001-05-05 18:36:22 +00:00
Sebastian Bergmann
d92522c8d1
Nuke unreferenced local variables.
2001-05-04 06:25:10 +00:00
Derick Rethans
8909c33319
- Applied a patch that enables getimagesize to return the size of .bmp and
...
.psd files (Patch by Paul Jongsma <paulj@webtic.com >)
@- Added support to getimagesize to return dimensions of BMP and PSD
@ files (Derick)
2001-05-03 21:28:26 +00:00
Andi Gutmans
4c823e8a89
- Change macros from V_ to VCWD_ because of AIX name clash
2001-04-30 12:45:02 +00:00
David Croft
34f03f2c5c
@ - Added key_exists() to check if a given key or index exists in an
...
@ array or object (David Croft)
Added key_exists() to check if a given key or index exists in an array or object
2001-04-30 04:06:09 +00:00
Andi Gutmans
91451bfcaf
- Remove leak from opendir() under Windows. Maybe readdir.c should be
...
changed to use emalloc()
PR:
Submitted by:
Reviewed by:
Obtained from:
2001-04-29 18:06:56 +00:00
Andi Gutmans
21603118b1
- Fix bug Bug id #5987 . It could be fixed by changing readdir.c but I
...
- prefered not to touch that code but to treat windows a bit differently
- in dir.c
PR:
Submitted by:
Reviewed by:
Obtained from:
2001-04-29 17:57:23 +00:00
Derick Rethans
b8ad2e842d
- 'Fix' for bug #10145
2001-04-29 15:48:07 +00:00
Sean Bright
a98c9ba66f
Fix proto decription.
2001-04-29 13:30:56 +00:00
Sean Bright
596e8208be
Really fix bug #10362 .
...
# My previous fix caused a segfault when there were parens in an unallowed
# tag :( Thanks Andi.
2001-04-29 13:16:05 +00:00
Sean Bright
9e34117cd9
Fix for bug #10362
2001-04-28 23:07:51 +00:00
Sean Bright
4175151567
- Fix for bugs #9042 , #8212 , and #8962 . Patch from <tunacat@yahoo.com>
...
- Fixed proto for exec()
2001-04-28 13:16:18 +00:00
Sterling Hughes
1865be6ca4
fix for bug #8994 , courtesy tom.anheyer@berlinonline.de
...
# Are we having another RC, and if so, can I MFH in time for it?
2001-04-26 13:47:17 +00:00
Rasmus Lerdorf
e8e6828863
- Make the printf functions binary clean
...
@ - Make the printf family of functions binary clean
2001-04-25 21:05:59 +00:00
Andrei Zmievski
07a5e3fb9c
* Made ENT_* defines availabe to other functions.
...
* The key/variable names in WDDX are now html escaped to not break XML.
@- Fixed WDDX serialization to HTML-escape key/variable names so as not to
@ break the XML packet. (Andrei)
2001-04-25 20:14:29 +00:00
Andi Gutmans
ef1835f54f
- Fix filetype() and lstat() too.
2001-04-25 06:30:24 +00:00
Andi Gutmans
ef71855bc6
- Another fix
2001-04-25 05:53:45 +00:00
Andi Gutmans
502b4efb7d
- Nuke warning. This signed/unsigned stuff gets really annoying sometimes.
2001-04-25 05:43:30 +00:00
Andi Gutmans
76860d4fc0
- Fix problem with is_link(), there seem to be at least another couple of
...
- bugs lurking around though.
- Cleaned up code a bit and optimized it a bit too.
2001-04-25 04:22:29 +00:00
Stig Bakken
2cf1b8d345
* expanded the following constants and made them available in PHP:
...
DEFAULT_INCLUDE_PATH
PEAR_INSTALL_DIR
PHP_EXTENSION_DIR
PHP_BINDIR
PHP_LIBDIR
PHP_DATADIR
PHP_SYSCONFDIR
PHP_LOCALSTATEDIR
PHP_CONFIG_FILE_PATH
* no longer generating pear/PEAR.php
* fixed some tests
* some more installer work
2001-04-22 01:09:14 +00:00
foobar
d9b2f7910e
ws pollution removed.
2001-04-20 15:37:55 +00:00
Wez Furlong
86c84da7c2
Discovered warn_not_available and used it.
2001-04-17 17:08:03 +00:00
Wez Furlong
57af70f707
Changes for streams. Added temporary fopenstream function to PHP so that
...
the streams can be tested.
2001-04-17 17:06:06 +00:00
Alexander Feldman
f0abfcc894
Fixed typo.
2001-04-15 19:03:12 +00:00