RE: [PHP-DEV] Possible problem in the parser

2003-03-15 Thread Marcus Börger
ED Ok Mike, i did not took left association into accound becuase it is stupid. Since the whole thing is messy at the moment and there is no reason to keep BC for messy things which shouldn't be done anyway i suppose we make ir right associative. Andi? marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DEV] Possible problem in the parser

2003-03-13 Thread Marcus Börger
previous mails where i showed where the error is. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /tests/classes interface_class.phpt interface_doubled.phpt interface_implemented.phpt interface_instantiate.phpt interface_member.phpt interface_method.phpt interface_method_final.phpt interface_method_private.phpt interface_must_be_implemented.phpt

2003-03-12 Thread Marcus Börger
w to write it correctly with the missing ',' :-)) marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /tests/classes interface_class.phpt interface_doubled.phpt interface_implemented.phpt interface_instantiate.phpt interface_member.phpt interface_method.phpt interface_method_final.phpt interface_method_private.phpt interface_must_be_implemented.phpt

2003-03-12 Thread Marcus Börger
At 20:20 12.03.2003, Andrei Zmievski wrote: On Wed, 12 Mar 2003, Marcus Börger wrote: > This works even though i do not like extends FOO. Why? Both C# and Java (AFAIR) allow interfaces to extend other interfaces. Because of the second part of the answer. It is a little bit strange that

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Marcus Börger
list. I'd appreciate not having that requirement myself. Wes We must not loose contact to those delivering ideas and patches. But loosing all this noise is a good idea! So to you Wes, it is good to have readers like you! However we all spend to much time reading noise. regards marcus --

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /tests/classes interface_class.phpt interface_doubled.phpt interface_implemented.phpt interface_instantiate.phpt interface_member.phpt interface_method.phpt interface_method_final.phpt interface_method_private.phpt interface_must_be_implemented.phpt

2003-03-12 Thread Marcus Börger
have to do class foobar extends foo implements BAR,JAZ {} marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Marcus Börger
et the time. Round robin list? Everyone in php-dev has to take care for some days? regards marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Marcus Börger
ng as it contains the letters P, H and P again in this particular order. I think Shane got the solutionfollow up there marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Possible problem in the parser

2003-03-12 Thread Marcus Börger
0) ? 5 : 6) => 1 ? 4 : 6 => 4 PHP?) '?:' has higher precedence than '==' (a == (1 ? 4 : a) == (2 ? 5 : 6)) ( a == (4) == (5)) Now what? Assume order left from to right: ( (a == (4)) == (5) => (0 == 5) => 0 Or right to left (which contradicts rest of PHP behavior)

Re: [PHP-DEV] Need some ZE2 functions exported.

2003-03-12 Thread Marcus Börger
At 15:54 12.03.2003, l0t3k wrote: im trying to do some namespace related experimentation but im getting the Have a look at spl (http://marcus-boerger.de/php/ext/spl/) how that works without modyfing the engine. regards marcus -- PHP Development Mailing List <http://www.php.net/> To unsub

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /tests/classes interface_class.phpt interface_doubled.phpt interface_implemented.phpt interface_instantiate.phpt interface_member.phpt interface_method.phpt interface_method_final.phpt interface_method_private.phpt interface_must_be_implemented.phpt

2003-03-12 Thread Marcus Börger
d not allow extending interfaces at all. regards marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] iterating objects with interfaces

2003-03-11 Thread Marcus Börger
At 01:48 12.03.2003, Stephen Thorne wrote: All this is starting to feel strangely pythonic. How soon till (''.($_GET['textArea']->strip_tags()).'')->print(); ? Very far of because i am working with objects and interfaces and have no plan for other types as

Re: [PHP-DEV] iterating objects with interfaces

2003-03-11 Thread Marcus Börger
At 19:05 10.03.2003, Marcus Börger wrote: Standard PHP Library Updated version allows: class obj_array implements spl::array_read { bla ... } $obj = new obj_array(); $value = $obj[$index]; marcus -- -- Marcus Börger

Re: [PHP-DEV] iterating objects with interfaces

2003-03-10 Thread Marcus Börger
e point of using namespaces. I feel it should be spl::foreach spl::forward spl::key Yes you're so rightit was a) to avoit '__' in methods and b) most ideas were developed before namespaces exists correctly. btw. what does 'spl' stand for? Standard PHP Library regards mar

Re: [PHP-DEV] iterating objects with interfaces

2003-03-09 Thread Marcus Börger
At 06:54 09.03.2003, Marcus Börger wrote: Hi, i've just done the first step for a new extension which shall make use of interfaces newly implemented in ZE2. SPL is updated and supports a complete set of iterator interfaces. After moving from Minit/shutdown to Rinit/shutdown i also have no

[PHP-DEV] Question on startup

2003-03-09 Thread Marcus Börger
Can anybody answer this: Why do we have a sapi_deactivate(TSRMLS_C); call in php_module_startup()? marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: iterating objects with interfaces

2003-03-09 Thread Marcus Börger
il my mdk box is fixed, so could you post a tar.gz ? bz2 gives PowerArchiver the hiccups. /s/tar.bz2/tgz/ regards marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] iterating objects with interfaces

2003-03-08 Thread Marcus Börger
lements these can be used in a foreach() call. This work without even modifying the engine, i simply hook on the necessary calls. References: The documentation of the interfaces and their usage: http://marcus-boerger.de/php/ext/spl/spl.phps The extension code: http://marcus-boerger.de/php/e

Re: [PHP-DEV] Namespaces

2003-03-08 Thread Marcus Börger
extension. i assume i ZE2 cleans all this up for me after MSHUTDOWN (i.e. i dont need to worry about doing so manually)? Currently i have many memleaks at shutdown but do not investigate them because i remeber i have heard of problems there and i am shure it would work. regards marcus -- PHP

Re: [PHP-DEV] Namespaces

2003-03-08 Thread Marcus Börger
At 08:10 08.03.2003, l0t3k wrote: this may be a bit premature, but how do i inject the classes, functions and constants in my extension into a namespace ? l0t3k See below :-) marcus /* {{{ register_namespace */ /* You will have to alloc the pns before the call */ void register_namespace

Re: [PHP-DEV] Sqlite-php module in php-distribution?

2003-03-07 Thread Marcus Börger
At 10:32 07.03.2003, Björn Kalkbrenner wrote: Sqlite is something like dbm with sql92 language and more. I would much more appreciate a new submodule for the dbx module! regards marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Help: Sablotron and Shift-jis

2003-03-06 Thread Marcus Börger
quot; and "Shift_JIS" keep letter cases. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: INI defaults for CLI

2003-03-03 Thread Marcus Börger
At 02:45 03.03.2003, [EMAIL PROTECTED] wrote: Nothing attached... Try again... Index: main/SAPI.h === RCS file: /repository/php4/main/SAPI.h,v retrieving revision 1.100 diff -u -r1.100 SAPI.h --- main/SAPI.h 20 Feb 2003 22:21:48 -000

[PHP-DEV] INI defaults for CLI

2003-03-02 Thread Marcus Börger
unexpected behavior and then writes a bug... regards marcus -- -- Marcus Börger - Looking for all sorts of freelance work - just ask... Did i help you? Consider a gift: http://www.amazon.de/exec/obidos/wishlist/ho722v0rg1u0

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 / php.ini-dist php.ini-recommended /ext/filepro filepro.c /ext/session session.c /main main.c php_globals.h php_variables.c php_variables.h

2003-03-02 Thread Marcus Börger
;] and $_SERVER['argv'] when register globals is off. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 / php.ini-dist php.ini-recommended /ext/filepro filepro.c /ext/session session.c /main main.c php_globals.h php_variables.c php_variables.h

2003-03-02 Thread Marcus Börger
_CMD". Didn't quite understand what you mean by that... I meant to have $_COMMAND['argc'] and $_COMMAND['argv'] and $_COMMAND['commandline'] as a place to store argc/argv and _SERVER only having a copy of them for BC. marcus -- PHP Development Mai

[PHP-DEV] Re: [PHP-CVS] cvs: php4 / php.ini-dist php.ini-recommended /ext/filepro filepro.c /ext/session session.c /main main.c php_globals.h php_variables.c php_variables.h

2003-03-02 Thread Marcus Börger
ot;$_COMMAND" or "$_CMD". To answer my question above: The above variable should be independant and its ini setting "register_argc_argv" should be independant from "register_long_arrays". marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] main/network.c

2003-03-01 Thread Marcus Börger
ed in this function If i understand code and message correct - then indeed this could be a real error because it is possible to return an uninitialised error code there. since you're the one knowing the correct default error codes i leave it up to you :-) regards marcus Index:

Re: [PHP-DEV] Tie'ing variables

2003-03-01 Thread Marcus Börger
And for a quick start it would be enogh to simply initialize these vars upon first access. If we can do this the rest might be easy -> "devide and conquer"! marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] ZE2 constructors

2003-02-28 Thread Marcus Börger
R_FUNC_NAME)-1) && (!memcmp(function_name->u.constant.value.str.val, ZEND_CONSTRUCTOR_FUNC_NAME, sizeof(ZEND_CONSTRUCTOR_FUNC_NAME { CG(active_class_entry)->constructor = (zend_function *) CG(active_op_array); # regards marcus

Re: [PHP-DEV] Re: RFC: dba/inifile native interface

2003-02-24 Thread Marcus Börger
have been easily solved by using a thin PHP layer. Yeah - and i also thought about accepting an array as a key in case of handler inifile. I think this would be much better for users and for c code maintainance, what do you think? marcus -- PHP Development Mailing List <http://www.php.net/>

Re: [PHP-DEV] Why parent::construct not called?

2003-02-23 Thread Marcus Börger
t call the base constructor after anything else is done in the dericed constructor. The problem is that when you so the behavior of the base class members (functions and properties) is not predictable. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: ht

Re: [PHP-DEV] Why parent::construct not called?

2003-02-23 Thread Marcus Börger
At 18:02 23.02.2003, michel 'ziobudda' morelli wrote: Il dom, 2003-02-23 alle 17:32, Marcus Börger ha scritto: > You can do the following: > class derived extends base { > function __construct() { > parent::__construct(); > echo

Re: [PHP-DEV] Performance degradation

2003-02-23 Thread Marcus Börger
inking the same. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Why parent::construct not called?

2003-02-23 Thread Marcus Börger
echo "derived::__construct()\n"; } function __destruct() { parent::__destruct(); echo "derived::__destruct()\n"; } } See: http://marcus-boerger.de/php/ext

[PHP-DEV] Re: RFC: dba/inifile native interface

2003-02-23 Thread Marcus Börger
At 12:11 23.02.2003, Sascha Schumann wrote: On Sun, 23 Feb 2003, Marcus Börger wrote: > After fixing hopefully last problems in the inifile handler i made > up a patch which introduces a native interface to the inifile handler. > I did this because the "[group]name" key form

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/dba config.m4 dba.c dba_inifile.c php_inifile.h /ext/dba/libinifile .cvsignore inifile.c inifile.h /ext/dba/tests dba_inifile.phpt

2003-02-22 Thread Marcus Börger
ative interface, see: http://marcus-boerger.de/php/ext/dba_inifile.diff.txt Having this you can play around using the php.ini file for example :-) marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] RFC: dba/inifile native interface

2003-02-22 Thread Marcus Börger
name) and inifile_close() beeing an alias to dba_close() this interface is not meant to have first/nextkey but that would be easy to add if someone wants it. http://marcus-boerger.de/php/ext/dba_inifile.diff.txt regards marcus -- ------ Mar

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/dba config.m4 dba.c dba_inifile.c php_inifile.h /ext/dba/libinifile .cvsignore inifile.c inifile.h /ext/dba/tests dba_inifile.phpt

2003-02-22 Thread Marcus Börger
Lines before any group line are possible, too. These are identified by the group "[]" for now. Maybe i will change this to "". Skip the last line - i forgot i already did this because it is needed to have the test

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/dba config.m4 dba.c dba_inifile.c php_inifile.h /ext/dba/libinifile .cvsignore inifile.c inifile.h /ext/dba/tests dba_inifile.phpt

2003-02-22 Thread Marcus Börger
At 18:20 22.02.2003, Marcus Boerger wrote: helly Sat Feb 22 12:20:06 2003 EDT Log: @Added dba handler inifiles to support ini files. (Marcus) If someone wants to test this stuff: The layout of the inifile is: "[" "]" ws* "=" ws* w

[PHP-DEV] What about fsize()

2003-02-22 Thread Marcus Börger
What about a new function fsize()? I was thinking about extending filesize but that one is a wrapper around another function which handles stat access based on filenames. fsize() instead would use seekset/tell from our streams stuff. regards marcus -- PHP Development Mailing List <h

Re: [PHP-DEV] Jumadi

2003-02-20 Thread Marcus Börger
-dev for development of and the general list for use with php) and letting the user decide by click or replay to which it is to send. However the above automoderation would be even better if the list itself was moderated regards marcus -- PHP Development Mailing List <http://www.php

RE: [PHP-DEV] MFH policy

2003-02-19 Thread Marcus Börger
u check out with the PHP_4_3 tag this is sticky - so every commit goes to that branch. However you should use the other branch for the new apache sapi: "PHP_4" So simply check out with that tag, apply your changes, compile, *test* and commit. regards marcus -- PHP Development Mailing

Re: [PHP-DEV] CLI & long options

2003-02-15 Thread Marcus Börger
because Jani wants to break BC Derick That was my understanding, too. Anyhow i want to commit that first to HEAD and keep MFH as an option after option names are accepted. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CLI & long options

2003-02-15 Thread Marcus Börger
At 18:31 15.02.2003, Jani Taskinen wrote: Erm..that url doesn't look quite ok..? :) --Jani YES - It should have been: http://marcus-boerger.de/php/ext/cli-getopt.diff.txt -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CLI & long options

2003-02-15 Thread Marcus Börger
Hi, the patch below allows long option names such as "--version" and "--help" what eases the use of php especially when used on the command line. And it fixes the problem with duplicate error messages if arguments to command line are erroneous. http://marcus-boerger/php/ext

Re: [PHP-DEV] Why i believe we need final

2003-02-14 Thread Marcus Börger
At 22:05 23.01.2003, Marcus Börger wrote: The current OO implementation ( ... bla ... ) final ( ... bla ... ) I just updated the patch and it is getting a bit smaller due to latest engine changes. I also moved the check code from zend_language_parser.y into zend_compile.c (as suggested by...i

Re: [PHP-DEV] build no longer working

2003-02-14 Thread Marcus Börger
ks for the help :-) The problem was that the libtool sources contained a file libtool.m4 of zero bytes in size. After adding a correct file to the sorce directory and building everything again it works now: Thanks to Jani & Sascha regards marcus -- PHP Development Mailing List <http:/

Re: [PHP-DEV] build no longer working

2003-02-13 Thread Marcus Börger
At 01:57 14.02.2003, Jani Taskinen wrote: On Fri, 14 Feb 2003, Marcus Börger wrote: AC_PROG_LIBTOOL is defined in libtool.m4, which should come from libtool installation. Most likely you've just got mixed up versions in your system. Easiest way to get it working is to remove

Re: [PHP-DEV] build no longer working

2003-02-13 Thread Marcus Börger
At 00:04 14.02.2003, Sascha Schumann wrote: On Thu, 13 Feb 2003, Marcus Börger wrote: > I updated all m4,autoconf & libtool AND now i can no longer build php > > Anybody help? Get autoconf-2.13 and m4-1.4 (not 1.4o) from ftp.gnu.org. I give up for now... [marcus@zaphod p

[PHP-DEV] build no longer working

2003-02-13 Thread Marcus Börger
I updated all m4,autoconf & libtool AND now i can no longer build php Anybody help? using default Zend directory buildconf: checking installation... buildconf: autoconf version 2.54 (ok) buildconf: Your version of autoconf likely contains buggy cache code. Running cvsclean for you.

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /main spprintf.c

2003-02-11 Thread Marcus Börger
At 23:44 11.02.2003, Sascha Schumann wrote: Markus, here is a patch against the current CVS which If you commit that stuff, you should apply the changes to our snprintf.c, too. regards marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /main spprintf.c

2003-02-11 Thread Marcus Börger
just thought about doing that, too. You're really fast Unfortunatley i haven't yet the time to try it out but it looks good. Does it have any known problems? marcus p.s.: I asked about adding the cli manpage some days ago, can you help? -- PHP Development Mailing List <http:

Re: [PHP-DEV] RFC: uniqid default param

2003-02-10 Thread Marcus Börger
At 23:08 10.02.2003, Sascha Schumann wrote: No, some users might depend on the return format (think of database entries). That was one of the reasons i only changed it for CYGWIN. -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] RFC: uniqid default param

2003-02-10 Thread Marcus Börger
() needs to do. Shall more entropy be always true? marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Files Headers

2003-02-07 Thread Marcus Börger
From our files haeders: | available at through the world-wide-web at | Shouldn't the first 'at' be dropped? marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: New CLI switches (was [PHP-DEV] Using CLI as a shell)

2003-02-04 Thread Marcus Börger
hat are the advantages of -B -R -E and -F over using just -r? Yes it is the same result. I never said you cannot do it otherwise. The reason i implemented the switches is that it makes thinks easier. And sometimes making things easier for users is better than knowing as a developer that there is a solution. regards marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Using CLI as a shell

2003-02-03 Thread Marcus Börger
At 19:37 03.02.2003, Derick Rethans wrote: On Mon, 3 Feb 2003, Marcus [iso-8859-1] Börger wrote: > After adding -B, -F, -R and -E which will hopefully liked by the rest > of development team so that the stuff need not to be removed. Perhaps start by explaining what they do? First simp

[PHP-DEV] Using CLI as a shell

2003-02-03 Thread Marcus Börger
cutes every line that is entered. What do you think? regards marcus -- --->>> mailto:[EMAIL PROTECTED] <<<-- "We are animals among animals, all children of matter, save that we are the more disarmed. But since, unlike animals, we know that we

[PHP-DEV] Problems with zand_API.c

2003-02-02 Thread Marcus Börger
`va_start' not last named argument -- ------ Marcus Börger - Looking for all sorts of freelance work - just ask... Did i help you? Consider a gift: http://www.amazon.de/exec/obidos/wishlist/ho722v0rg1u0 --

[PHP-DEV] Another bugs.php.net question

2003-02-01 Thread Marcus Börger
The assigne bugs reminder mail does not contain links to the bug reports as normal mail from there do. Wouldn't it be nice if one could simply click on the bugs? marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Question on bug list

2003-01-31 Thread Marcus Börger
At 11:37 31.01.2003, Jani Taskinen wrote: On Fri, 31 Jan 2003, Marcus Börger wrote: >I had two questions: One to assign to all NEW messages and one >feature request to assign to selective bugs...I wanted to avoid reading >all messages on any bug. Thats overkill... Get a mail client

Re: [PHP-DEV] Question on bug list

2003-01-31 Thread Marcus Börger
hat bug? > > > > > > And then how am i informed about new bugs? Is there a mailing list for > > > that? > > > Currently i read the bug-summary-list.. > > > > > > > [EMAIL PROTECTED] > > Empty mail to <[EMAIL PROTECTED]> should do it. Th

Re: [PHP-DEV] Re: str_ireplace vs. stri_replace

2003-01-30 Thread Marcus Börger
these functions. Aggreed! The additional parameter solution is a pure developer friendly solution. The separate function is a user friendly solution. If we would like to make all happy then add the case-insensativity parameter to all "str_" (not "stri_") functions and add the ad

[PHP-DEV] Question on bug list

2003-01-30 Thread Marcus Börger
Wouldn't it be nice if one could attach himself to a bug and receive an email on every new message to that bug? And then how am i informed about new bugs? Is there a mailing list for that? Currently i read the bug-summary-list.. marcus -- --->>> mailto:[E

Re: [PHP-DEV] Why i believe we need final

2003-01-30 Thread Marcus Börger
At 10:34 30.01.2003, Stanislav Malyshev wrote: MB>> If you want real life examples (and surely it seems you will never MB>> trust me) get yourself a book from scott meyers (going to my I would certainly trust you if you gave me an example. Marcus, I'm not here to personally atta

Re: [PHP-DEV] Re: Mandatory File Locking in PHP?

2003-01-29 Thread Marcus Börger
to the file (g-x, g+s, I believe). That seems like a lot to require inside an extension. The dba solution so far is based on flock() and where not appropriate use fctnl(). I tried to have the lock stuff working on as many systems as possible. marcus -- PHP Development Mailing List <h

Re: [PHP-DEV] Feature Request #5919 case-insensitive version of str_replace()

2003-01-29 Thread Marcus Börger
for the reasons stated above. +1 (It is not so important if we know how to emulate this one. It's about our usesers..we should not leave the focus on the users.) marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Mandatory File Locking in PHP?

2003-01-29 Thread Marcus Börger
u can use those mechanisms then both (streams and netware port) would benefit. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Why i believe we need final

2003-01-29 Thread Marcus Börger
has abstract with default implementation (the other discussion where i said is possible and valuable to think about)). If you don't like C++ get you a theory book or any good book about another language(written by someone who has understood OOP). Sorry but i guess the discussion does not make any more sense. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] configure broken

2003-01-27 Thread Marcus Börger
At 06:14 28.01.2003, Sebastian Bergmann wrote: ./configure: line 30289: syntax error near unexpected token `fi' ./configure: line 30289: `fi' Should be fixed by now. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Why i believe we need final

2003-01-27 Thread Marcus Börger
are virtual. Here you can redeclare it at will (but hopefully you know what that means and avoid it). Since we cannot have non virtual functions and discussing final here i am (obviously) in favor of the java solution (in real life the above is one of the few points i dislike in c++). regar

Re: [PHP-DEV] Compiling php4activescript

2003-01-27 Thread Marcus Börger
bison + win32 on the net. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Reducing the number of system calls for includes

2003-01-25 Thread Marcus Börger
a database and then there are include files...For example the search page reads "search.inc" of ever module to know how to search that modules data... way much includes. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Why i believe we need final

2003-01-23 Thread Marcus Börger
s even more powerfull than pure static binding and as a side effect it eliminates the problem that someone overrides erm redeclares a static bound function beeing inherited. A patch can be found here: http://marcus-boerger.de/php/ext/ze2/ regards marcus p.s.: It would be nice to reach a consensus he

Re: [PHP-DEV] [PATCH] jpeg2000 in php 4.3

2003-01-17 Thread Marcus Börger
ctionality. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] jpeg2000 in php 4.3

2003-01-16 Thread Marcus Börger
guidelines. Is there a page people should read first? As said above diff -u is prefered. regards & thanks marcus by the way:could you send me a 1 x 1 jp2 file, because i am not able to produce one my self? -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Memory allocation problems

2003-01-16 Thread Marcus Börger
machine has 1 GB of ram and 2 GB of swap space. I suppose you use some windows machine. I remember that all application have only 1GB of RAM for their own until you have a windows server version and that has an appropriate HAL and is configured to have more than 1gig. marcus -- PHP Development

Re: [PHP-DEV] function imagecreatefromjpeg pb

2003-01-13 Thread Marcus Börger
At 22:59 13.01.2003, oversky wrote: Hi, here they are... i tested this with several types of pictures taken from internet or generated by photoshop, etc... thanks for your help... - Original Message - From: "Marcus Börger" <[EMAIL PROTECTED]> To: "WarmUp&qu

Re: [PHP-DEV] function imagecreatefromjpeg pb

2003-01-13 Thread Marcus Börger
our images? marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Tru64 make test with --enable-all

2003-01-13 Thread Marcus Börger
62 result> Warning: fsockopen() [http://www.php.net/function.fsockopen]: unable to connect to qa.php.net:80 in /php/php4/run-tests.php on line 462 Hm - is it possible for you to track down this "unaligned access". I guess it is a problem with 32/64 bit types but the message is not helpf

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/overload .cvsignore CREDITS README config.m4 overload.c overload.dsp php_overload.h

2003-01-11 Thread Marcus Börger
At 10:45 11.01.2003, Sebastian Bergmann wrote: Marcus Börger wrote: > yes - but this makes building HEAD + ZE1 + overload impossible Well, ZE1 should only be build with the PHP_4_3 branch now. Otherwise we won't get the momentum needed to push PHP 5 and ZendEngine 2 development.

Re: [PHP-DEV] jpeg2000 in php 4.3

2003-01-10 Thread Marcus Börger
to read through the complete jpeg2000 specs. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Should I fix this?

2003-01-08 Thread Marcus Börger
this list. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] xml xinclude

2003-01-08 Thread Marcus Börger
short patch substitutes any entity references you might have in the xincluded document. Why not check for XML_XINCLUDE_START and XML_XINCLUDE_END or the libxml version in configure and make the necessary changes to the .c file? marcus -- PHP Development Mailing List <http://www.php.net/&g

Re: [PHP-DEV] Is exif_tagname() useful?

2003-01-07 Thread Marcus Börger
. regards marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DEV] building ext/dba on win32

2003-01-07 Thread Marcus Börger
At 21:06 07.01.2003, Dave Viner wrote: well.. from the win32build.zip file, I find in db.h this line: #define DB_VERSION_STRING "Sleepycat Software: DB 2.4.14: (6/2/98)" DB version 2 does not have the functions causing the error. And you cannot link DB 2 with --with-db3=... I suspect t

Re: [PHP-DEV] building ext/dba on win32

2003-01-07 Thread Marcus Börger
evision: 1.6 $ [cdb_make] => 0.75, $Revision: 1.5 $ [db3] => Sleepycat Software: Berkeley DB 3.3.11: (July 12, 2001) [flatfile] => 1.0, $Revision: 1.8 $ ) Interesting here is the version: DB 3.3.11. What version of DB 3 do you try to link to? regards marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Should I fix this?

2003-01-07 Thread Marcus Börger
Marcus: could you specify the speed loss? If it's noticeable I would rather suggest to either introduce a new function or another parameter to getimagesize(), no matter what the default is (e.g. let getimagesize() get the "real" size and introduce something like getimagesize_fast(

Re: [PHP-DEV] Should I fix this?

2003-01-07 Thread Marcus Börger
ant to do it in vain. As it is now I've got PHP code that checks this for me to prevent "malicious" users from uploading huge avatars in my forum software. Your scenario described above seems like a reason to accept the the speed loss. So send an unified patch and we will have a loo

Re: [PHP-DEV] CGI and CLI [packaging issues]

2003-01-06 Thread Marcus Börger
At 06:55 06.01.2003, Jean-Michel Dault wrote: Le sam 04/01/2003 à 18:13, Marcus Börger a écrit : > What might happen is that CLI becomes widely accepted and scripts > calling php from shebang lines. Id so your above solution is a bad idea > and i hope CLI will be... I'm CC'ing

Re: [PHP-DEV] Zend 2 - how to test

2003-01-05 Thread Marcus Börger
it? Try checkout of both 4.3.1-dev and HEAD u have fixed several issues yesturday. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CGI and CLI (compromise proposal)

2003-01-04 Thread Marcus Börger
At 21:57 04.01.2003, Jean-Michel Dault wrote: Le sam 04/01/2003 à 08:15, Marcus Börger a écrit : > >What happens when a user wants to install *both* php-cli and php-cgi? > >You cannot have two files with the same name, either in the same RPM, or > >in two different RPMS.

Re: [PHP-DEV] CGI and CLI (compromise proposal)

2003-01-04 Thread Marcus Börger
would go for naming it to whatever name you like different from that of the executable in the CLI RPM. Since RPM can handle all installation problems everything is fine then. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP Look Back 2002

2002-12-31 Thread Marcus Börger
d hopefully an even better 2003 for all of us. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] option to start in PHP mode

2002-12-28 Thread Marcus Börger
At 10:46 28.12.2002, Andi Gutmans wrote: At 01:45 AM 12/28/2002 +0100, Marcus Börger wrote: At 22:40 27.12.2002, Andi Gutmans wrote: I don't think it's beneficial to PHP to have two modes especially as the cli more you're talking about would support ?> followed by a Let

Re: [PHP-DEV] option to start in PHP mode

2002-12-27 Thread Marcus Börger
hat stuff we can expand CLI by a new switch that executes the script in eval() mode. This way we do not have the problem with the closing "?>" tags mentioned by Andi (i just thought about starting a RFC on this). marcus At 02:11 PM 12/27/2002 -0500, Andrei Zmievski wrote: We've

Re: [PHP-DEV] Re: #21139 [Ctl]: zlib.output_compression + windows failure

2002-12-23 Thread Marcus Börger
I have taken a short look at the code and i think Morioshi is correct. zlib_ouput_compression doesn't seem work when zlib si compiled as a shared module. But i will not have time for this until after x-mas. marcus At 09:11 23.12.2002, Moriyoshi Koizumi wrote: As far as I've looked

Re: [PHP-DEV] RC4 + windows

2002-12-22 Thread Marcus Börger
At 01:32 22.12.2002, Edin Kadribasic wrote: On Sunday 22 December 2002 00:51, Marcus Börger wrote: > Hi, > > i can no longer load mhash and domxml dll's under windows RC4. > > marcus Rememberd to copy .dlls from dlls folder to a folder in PATH like c:\winnt\system32? Edi

[PHP-DEV] RC4 + windows

2002-12-21 Thread Marcus Börger
Hi, i can no longer load mhash and domxml dll's under windows RC4. marcus -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   3   4   5   6   >