Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Andrey Hristov
I think this is just a bad day :) Andrey - Original Message - From: Jani Taskinen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 6:59 PM Subject: [PHP-DEV] Moderate PHP-DEV Of about 20 emails today, 6 were posted to wrong mailing list. And one of

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Andrey Hristov
Okay Jani, I also read every mail here but a non-related to this mail is easily recognizable in 2-3 secs. Most time loses Derick who answers (thanks). May be the change of the list name is good idea. Andrey - Original Message - From: Jani Taskinen [EMAIL PROTECTED] To: Andrey Hristov

[PHP-DEV] Possible problem in the parser

2003-03-12 Thread Andrey Hristov
Few minutes ago I found the following behaviour somehow wierd for me : ?php $a = 1; $b = $a==1? 4:$a==2? 5:6; printf(a[%d]b[%d]\n, $a, $b); ? Prints : a[1]b[5] Similar C program : main() { int a,b; a = 1; b = a==1? 4:a==2? 5:6; printf(a[%d]b[%d]\n, a, b); } Prints :

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

2003-03-12 Thread Andrey Hristov
- Original Message - From: Sascha Schumann [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 7:21 PM Subject: Re: [PHP-DEV] Possible problem in the parser On Wed, 12 Mar 2003, Andrey Hristov wrote: Few minutes ago I found

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

2003-03-12 Thread Andrey Hristov
On Wed, 12 Mar 2003, Andrey Hristov wrote: Few minutes ago I found the following behaviour somehow wierd for me : Known bug, the associativity of the ternary operator has been broken since ages in the engine. It's on the won't be fixed sheet, because of BC concerns

[PHP-DEV] Another one

2003-03-12 Thread Andrey Hristov
The following : ?php $a = 1; $b = $a==1? 4,5:6; printf(a[%d]b[%d]\n, $a, $b); ? gives Parse error: parse error, unexpected ',' in /home/storage/ternary.php on line 3 Similar C program compiles without problems. Is this also known? Andrey P.S. I obey I won't search for more such stuff today :)

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Andrey Hristov
This worries me somewhat. I do not have a CVS account. I do not actively develop and contribute to the PHP sourcecode right now, however my company uses php very very much. I would like to keep up to date on what is happening with the development team and figuring out what directions they are

Re: [PHP-DEV] [PATCH] new idate() - sunrise() - sunset() functions

2003-02-07 Thread Andrey Hristov
I don't think this is good idea. date_sunset(), date_sunrise() are better. Andrey - Original Message - From: moshe doron [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, February 07, 2003 2:37 PM Subject: Re: [PHP-DEV] [PATCH] new idate() - sunrise() - sunset() functions

Re: [PHP-DEV] DLL PHP script for C

2003-02-06 Thread Andrey Hristov
AFAIK, sapi/embed can be used for this. The maintainer is Edin Kadribasic Andrey - Original Message - From: Fernando Serboncini [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 06, 2003 4:34 PM Subject: [PHP-DEV] DLL PHP script for C Hi, sorry if I'm in the wrong

Re: [PHP-DEV] [PATCH] new idate() - sunrise() - sunset() functions

2003-02-06 Thread Andrey Hristov
- Original Message - From: Moshe Doron [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 06, 2003 5:02 PM Subject: Re: [PHP-DEV] [PATCH] new idate() - sunrise() - sunset() functions Zeev Suraski [EMAIL PROTECTED] wrote in message

Re: [PHP-DEV] PHP 5 mailing list

2003-02-04 Thread Andrey Hristov
Dan, on http://news.php.net php.version5.dev is listed (12 messages so far in the archive). Andrey - Original Message - From: Dan Kalowsky [EMAIL PROTECTED] To: PHP Development Mailing list [EMAIL PROTECTED] Sent: Monday, February 03, 2003 10:22 PM Subject: [PHP-DEV] PHP 5 mailing list

Re: [PHP-DEV] can't get wincvs to ask for login

2003-02-03 Thread Andrey Hristov
Try out : http://www.tortoisecvs.org/ This is shell extension to explorer.exe .Everything is done with the right button of the mouse wherever you are (except Java programs). On the same page there is project for Subversion shell of the same type. Andrey - Original Message - From: Greg

Re: [PHP-DEV] can't get wincvs to ask for login

2003-02-03 Thread Andrey Hristov
Did you checked out from smarty with your new account or with anonymous ? Andrey - Original Message - From: Greg Beaver [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, February 03, 2003 6:42 PM Subject: Re: [PHP-DEV] can't get wincvs to ask

Re: [PHP-DEV] php exception handling

2003-01-23 Thread Andrey Hristov
This is scheduled for PHP5. Want to know when it will be released? - This year Q3 or Q4 Regards, Andrey - Original Message - From: Alex Mendelev [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 23, 2003 7:41 PM Subject: [PHP-DEV] php exception handling Hey, Are

Re: [PHP-DEV] function not found

2003-01-21 Thread Andrey Hristov
main is called the global scope. In C the programs start their execution in function main. Because PHP is not restricted in this way the global scope except the functions (and methods) is called function.main. However there is no such documentation on the web. You may fill bug report for

[PHP-DEV] Problem with compiling Zend 1

2003-01-21 Thread Andrey Hristov
Hi, I am still with ZE1 - php4 (HEAD) I have this problem : /home/andrey/development/php4/ext/standard/basic_functions.c: In function `php_simple_ini_parser_cb': /home/andrey/development/php4/ext/standard/basic_functions.c:2827: `ZEND_INI_PARSER_POP_ENTRY' undeclared (first use in this

Re: [PHP-DEV] Re: Problem with compiling Zend 1

2003-01-21 Thread Andrey Hristov
, check out PHP_4_3 if you need ZE1 builds. harald. Andrey Hristov [EMAIL PROTECTED] schrieb im Newsbeitrag 01c701c2c172$99b03650$1601a8c0@andreywin">news:01c701c2c172$99b03650$1601a8c0@andreywin... Hi, I am still with ZE1 - php4 (HEAD) I have this problem : /hom

Re: [PHP-DEV] Feature Request: Auto Include a Function

2003-01-14 Thread Andrey Hristov
Hi, on the last week's iSeminar Zeev said that in ZE2(php5) there will be new interesting function for implementing in userland. Its name will be __autoload(). It will be called in case the code wants to instantiate a class that is unknown. The function should require/include the file where the

[PHP-DEV] traversing EG(function_table)

2003-01-10 Thread Andrey Hristov
Hi, is it ok to traverse this has using its internal HashPosition or external one has to be used. Andrey -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Designing for PHP4 with PHP5 in mind...

2003-01-07 Thread Andrey Hristov
To be more precise - passed by handle. Andrey - Original Message - From: Leon Atkinson [EMAIL PROTECTED] To: John Wells [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, January 07, 2003 6:31 AM Subject: Re: [PHP-DEV] Designing for PHP4 with PHP5 in mind... Any good links you

Re: [PHP-DEV] Generic expressions interpolation in strings

2003-01-06 Thread Andrey Hristov
- Original Message - From: Leon Atkinson [EMAIL PROTECTED] To: Federico Giannici [EMAIL PROTECTED]; John Coggeshall [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, January 06, 2003 7:09 PM Subject: Re: [PHP-DEV] Generic expressions interpolation in strings print END table

Re: [PHP-DEV] Statistical analysis extension

2003-01-05 Thread Andrey Hristov
Hi GSL(GNU Scientific Library) has a part about statistics. It has 27 functions. I think not to copy the names of all functions. At the moment or better - my current effort to wrap this library. However it is GPLed and I haven't received an (dis)approval from the authors. You make take a look at

Re: [PHP-DEV] Statistical analysis extension

2003-01-05 Thread Andrey Hristov
I hope that this is delay because of the holidays. I will try again in few days. And if then I have no answer I will discontinue my efforts Thanks for the reply. Andrey - Original Message - From: Andi Gutmans [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED]; George Schlossnagle

[PHP-DEV] branch compile problem - win32

2003-01-05 Thread Andrey Hristov
Maybe this is know but on snaps there is an error : Next STABLE Win32 snapshot in: Win32 build failed. Consult compile.log for failure reason. Cvs build is ok. Andrey -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] ZE2, Win32, and PHP5

2003-01-03 Thread Andrey Hristov
John, i think that on http://snaps.php.net/ there is automatic built packages. Andrey - Original Message - From: John Coggeshall [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 03, 2003 12:44 PM Subject: [PHP-DEV] ZE2, Win32, and PHP5 Is anyone already building

Re: [PHP-DEV] Re: PHP5/ZE2: variables definition, constant variables

2003-01-03 Thread Andrey Hristov
Hi, To rephrase Zeev : Use error_reporting(E_ALL) Once you start using it most of the errors from undefined variables will go to oblivion. Your example is too fictional errors like $$var_name or $foo-$mCount are easy to find with the method above. Andrey - Original Message - From:

Re: [PHP-DEV] new database extension

2003-01-03 Thread Andrey Hristov
Hi Jacob, If you are totally new the the PHP extensions find one or two that are small but descriptive. Read this : http://pres.derickrethans.nl/ze-ext , as well the docs for developers on php.net Andrey - Original Message - From: Chandler, Jacob R [EMAIL PROTECTED] To: [EMAIL

Re: [PHP-DEV] Interesting result

2002-12-22 Thread Andrey Hristov
oukei, stopping to ask anymore :)) Andrey - Original Message - From: Andi Gutmans [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Saturday, December 21, 2002 7:20 PM Subject: Re: [PHP-DEV] Interesting result Again, as it is undefined in PHP

[PHP-DEV] Re: [PEAR-DEV] GPL'ed libraries and PECL

2002-12-22 Thread Andrey Hristov
- Original Message - From: Jon Parise [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, December 22, 2002 6:16 AM Subject: [PEAR-DEV] GPL'ed libraries and PECL I seek clarification: PECL cannot host a PHP extension that is based on a GPL-licensed library. Is this correct?

[PHP-DEV] Interesting result

2002-12-21 Thread Andrey Hristov
Hi, i got an interesting case : ?php $a = 1; var_dump($a + $a++); $a = 1; $x = $a; var_dump($a + $a++); ? Result int(2) int(3) Can somebody explain why if there is reference to the var the result is different? Andrey -- PHP Development Mailing List http://www.php.net/ To

Re: [PHP-DEV] Interesting result

2002-12-21 Thread Andrey Hristov
- Original Message - From: Andi Gutmans [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Saturday, December 21, 2002 4:17 PM Subject: Re: [PHP-DEV] Interesting result It doesn't matter because the behavior here is undefined just like in C. You can't use

Re: [PHP-DEV] month part

2002-12-19 Thread Andrey Hristov
Please ask on [EMAIL PROTECTED] and take a look at sscanf() function Andrey - Original Message - From: Diana Castillo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 19, 2002 4:04 PM Subject: [PHP-DEV] month part How can I get a string containing the month part of

Re: [PHP-DEV] Sessions, session_register()

2002-12-17 Thread Andrey Hristov
- Original Message - From: Sascha Schumann [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, December 17, 2002 11:02 AM Subject: Re: [PHP-DEV] Sessions, session_register() Isn't that an error that 4.2.3 throws when session_register() is used

Re: [PHP-DEV] Single quotes VS. Double quotes

2002-12-13 Thread Andrey Hristov
See this : http://phpxpath.sourceforge.net/benchmark/phpBench.php And show it to the guy. Andrey - Original Message - From: Brian Moon [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 13, 2002 6:29 PM Subject: [PHP-DEV] Single quotes VS. Double quotes This is of really

Re: [PHP-DEV] cleaning/building just one extension

2002-12-12 Thread Andrey Hristov
isn't it possible to cd to ext/wddx and make clean there? Not sure but I think it's possible. Andrey - Original Message - From: Andrei Zmievski [EMAIL PROTECTED] To: PHP Developers [EMAIL PROTECTED] Cc: Sascha Schumann [EMAIL PROTECTED] Sent: Thursday, December 12, 2002 7:33 PM Subject:

Re: [PHP-DEV] cleaning/building just one extension

2002-12-12 Thread Andrey Hristov
isn't it possible to cd to ext/wddx and make clean there? Not sure but I think it's possible. Nope, it is not :( Andrey Andrey -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] php.exe - php-cgi.exe

2002-12-11 Thread Andrey Hristov
My opinion : Windows : CGI - php.exe CLI - php-cli.exe All other platforms : CLI - php CGI - php-cgi Why I think in this way. Many users use the cgi version under windows. Small percent of the *nix users use php as cgi. Most of the installations are libphp4.so . I know that it is not consistent

Re: [PHP-DEV] pecl extensions

2002-12-03 Thread Andrey Hristov
P.S. Hows the SOAP going :) Well after formatting my computer I finally have my dev envrionment back up. I started to get back to it. I havn't put that much time into it. Don't worry I won't let it die, unless it already is dead :). Please don't let it die... :) Andrey -- PHP

Re: [PHP-DEV] my own superglobals?

2002-11-27 Thread Andrey Hristov
Hi, this was asked on this list at least once. The answer is no because the design of the language is this. If the user is given the chance to make variables superglobals than in my opinion big mess will come up. It is a mess even with coding by using global statement and global vars. Andrey

Re: [PHP-DEV] Error Codes, Langs, etc

2002-11-26 Thread Andrey Hristov
I've seen a big poster in my local Fullbright foundation represantive. It says something like : One of every four people on the earth knows some English. Andrey -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Error Codes, Langs, etc

2002-11-26 Thread Andrey Hristov
I've seen a big poster in my local Fullbright foundation represantive. It says something like : One of every four people on the earth knows some English. Why does Billy localize M$ windows then? And, most importantly, what would he sell without doing it? Remember, his users know

Re: [PHP-DEV] returning a bunch of arrays as fields of an object?

2002-11-25 Thread Andrey Hristov
HI, Not 100% sure but. Outside of the function : static zend_class_entry *yourclasslib_class_entry_ptr; In the function : object_init_ex(return_value, yourclasslib_class_entry_ptr); add_property_zval(return_value, ...) // array 1 add_property_zval(return_value,...) // array 2

Re: [PHP-DEV] returning a bunch of arrays as fields of an object?

2002-11-25 Thread Andrey Hristov
yourlibclass_class_functions[] = { PHP_FALIAS(some_function, somefunction, NULL) // the first is the method name the second is PHP_FUNCTION(somefunction) {NULL, NULL, NULL} }; Andrey - Original Message - From: Andrey Hristov [EMAIL PROTECTED] To: Tim [EMAIL PROTECTED]; [EMAIL

Re: [PHP-DEV] Just a little question

2002-11-19 Thread Andrey Hristov
$ar = array_diff(explode('*',$str), array()); Regards Andrey - Original Message - From: Hacook [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 19, 2002 11:47 AM Subject: [PHP-DEV] Just a little question Hi all, I have a chain charachter that look like this :

Re: [PHP-DEV] strpos() suggestion

2002-11-14 Thread Andrey Hristov
Hi, from 4.3.0 it will be ok to use strcspn(), atm (int 4.2.3) it has 2 params. From 4.3.0 it has up to four params. It the second pair is like in substr(). Start index can be given, or even start index and how much chars to be checked. The same behavior is true and for strspn() (starting 4.3.0)

Re: [PHP-DEV] PHP 4.3 ToDo

2002-11-14 Thread Andrey Hristov
I agree. Nevertheless that I think 430 is stable, this unstability in the mysql extension will stop me from promoting to people I know the switch from 4.2.2 to 4.3.0 On my dev server we deployed 430-dev and I have seen those out of sync errors. I think that it is maybe even a showstopper.

[PHP-DEV] Proposal for extending gettype()

2002-10-30 Thread Andrey Hristov
Hi, I am curious what's is the opinion of the devs about adding new additional parameter to gettype which won't be compulsory. Using it instead of returning a string the function will return an int which. As an addition new consts will be registered - something like IS_STRING, IS_LONG and so on.

Re: [PHP-DEV] trying to understand zvals

2002-10-18 Thread Andrey Hristov
- Original Message - From: Stanislav Malyshev [EMAIL PROTECTED] To: Tim Daly, Jr. [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, October 17, 2002 5:34 PM Subject: Re: [PHP-DEV] trying to understand zvals TDJ I'm trying to do some extension programming, and I'm pretty confused

Re: [PHP-DEV] Re: [4.3.0-pre1] output handler 'ob_gzhandler' cannot be used twice

2002-10-14 Thread Andrey Hristov
I got the same error with phpMyAdmin 2.2.0rc4 Best regards Andrey Hristov - Original Message - From: Martin Jansen [EMAIL PROTECTED] To: Jan Schneider [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, October 14, 2002 10:14 AM Subject: Re: [PHP-DEV] Re: [4.3.0-pre1] output handler

Re: [PHP-DEV] coding a php thread safe extenssion

2002-10-03 Thread Andrey Hristov
Read this : http://www.php.net/manual/en/zend.php look at this extension. Last time when I saw it - it was not big and most of it quite understandable: http://sourceforge.net/projects/php-templates/ Andrey - Original Message - From: Benoit Canet [EMAIL PROTECTED] To: [EMAIL PROTECTED]

[PHP-DEV] Stability of DOMXML

2002-10-01 Thread Andrey Hristov
Hi all, I want to ask how much stable is DOM XML in 4.3.0-dev. In the docs it is EXPERIMENTAL. Is it experimental or stable in 4.3.0 Are there serious memory leaks or leaks at all? Thanks, Andrey P.S. Sorry for that it is little off-topic but imo this is the only place where such information

[PHP-DEV] Interesting note

2002-09-25 Thread Andrey Hristov
Hi, regarding to documentation of mysql_query() : [snip] Note: The query string should not end with a semicolon. [/snip] Is this mySQL problem or what? As far as I see in the sources this does not anything with PHP. So is it mysql issue. Thanks, Andrey -- PHP Development Mailing List

[PHP-DEV] CVS Account Request: andrey

2002-09-10 Thread Andrey Hristov
Developing the PHP runtime (ext/*) refered here by Derick. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: andrey

2002-09-10 Thread Andrey Hristov
Developing the PHP runtime -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP source code

2002-09-09 Thread Andrey Hristov
Zend/zend_language_parser.y Zend/zend_language_scanner.l you have to know something about Yacc/Bison and FLex/Lex Best regards Andrey Hristov - Original Message - From: OrangeHairedBoy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 09, 2002 7:59 PM Subject: [PHP-DEV

Re: [PHP-DEV] http://www.php-con.com/

2002-09-05 Thread Andrey Hristov
I meant gray background . Andrey - Original Message - From: Andrey Hristov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 05, 2002 3:53 PM Subject: [PHP-DEV] http://www.php-con.com/ Hi, can someone change the HTML of http://www.php-con.com/ and add bgcolor

Re: [PHP-DEV] http://www.php-con.com/

2002-09-05 Thread Andrey Hristov
yup... :((( Andrey - Original Message - From: Xavier Spriet [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, September 05, 2002 3:53 PM Subject: Re: [PHP-DEV] http://www.php-con.com/ this is still the wrong list. On Thu, 2002-09-05 at 08

Re: [PHP-DEV] Default extensions (was: mbstring)

2002-09-03 Thread Andrey Hristov
Best regards Andrey Hristov - Original Message - From: James Cox [EMAIL PROTECTED] To: Jani Taskinen [EMAIL PROTECTED]; Jon Parise [EMAIL PROTECTED] Cc: PHP Development Mailing list [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 12:19 AM Subject: RE: [PHP-DEV] Default extensions

[PHP-DEV] Re: [PHP-QA] array_unique broken?

2002-09-03 Thread Andrey Hristov
that is returned). Best regards Andrey Hristov - Original Message - From: Sebastian Nohn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 10:39 AM Subject: [PHP-QA] array_unique broken? bugs.php.net seems to be down, so i do it this way: ah

[PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique broken?

2002-09-03 Thread Andrey Hristov
. Best regards Andrey Hristov - Original Message - From: Stig Venaas [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 11:16 AM Subject: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique

Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique broken?

2002-09-03 Thread Andrey Hristov
- Original Message - From: Stig Venaas [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 11:43 AM Subject: Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique broken

Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique broken?

2002-09-03 Thread Andrey Hristov
- Original Message - From: Stig Venaas [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 11:53 AM Subject: Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique broken? On Tue, Sep 03, 2002 at 11:47:58AM +0300

[PHP-DEV] Problem with http://php.net

2002-09-02 Thread Andrey Hristov
Hi, maybe offtopic but I cannot access php.net . I thought that it is maybe problem with my connection so tried http://network-tools.com to fetch the headers and teh result is timeout. Best regards Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit

Re: [PHP-DEV] Problem with http://php.net

2002-09-02 Thread Andrey Hristov
Too much downloads Best regards Andrey Hristov - Original Message - From: Andrey Hristov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 02, 2002 11:35 AM Subject: [PHP-DEV] Problem with http://php.net Hi, maybe offtopic but I cannot access php.net . I thought

Re: [PHP-DEV] Problem with http://php.net

2002-09-02 Thread Andrey Hristov
Yup, I saw /server-status - thus i wrote too much downloads Best regards Andrey Hristov - Original Message - From: James Cox [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, September 02, 2002 11:53 AM Subject: RE: [PHP-DEV] Problem with http

Re: [PHP-DEV] Problem with http://php.net

2002-09-02 Thread Andrey Hristov
my GSM too, all IM messages go there when i am not at the comp. it's 2am and someone wanted to say hi :))) or anything else . Best regards Andrey Hristov P.S. Offtopic sorry - Original Message - From: James Cox [EMAIL PROTECTED] To: Stefan Esser [EMAIL PROTECTED] Cc: [EMAIL PROTECTED

Re: [PHP-DEV] segfault on adding empty heredoc to string

2002-09-01 Thread Andrey Hristov
No problems on win32 , php-430-dev cli.ZE2. Best regards Andrey Hristov - Original Message - From: Lukas Schroeder [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, September 01, 2002 8:50 PM Subject: [PHP-DEV] segfault on adding empty heredoc to string hi, i can crash my php

Re: [PHP-DEV] array_diff not working with last element different

2002-08-27 Thread Andrey Hristov
so, is there need of array_adiff()? Best regards Andrey Hristov - Original Message - From: Stig Venaas [EMAIL PROTECTED] To: Brad LaFountain [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, August 27, 2002 5:02 PM Subject: Re: [PHP-DEV] array_diff not working with last element

[PHP-DEV] [PATCH][Resend:] array_search() changed to allow the reposition of the internal pointer

2002-08-27 Thread Andrey Hristov
Hi, this patch adds new functionality to array_search(). It is mostly useful in cases where the indices in the array are not numeric but strings. When a programmer wants to find the key for a value in the array he/she is give the opportunity to move the internal pointer of the array to the

Re: [PHP-DEV] array_diff not working with last element different

2002-08-27 Thread Andrey Hristov
Hi, I've done some hacking and have working (one example tested) array_diff() modified to be like array_adiff(). If there is interest I will provide a patch. Best regards Andrey Hristov - Original Message - From: Brad LaFountain [EMAIL PROTECTED] To: Stig Venaas [EMAIL PROTECTED

Re: [PHP-DEV] array_diff not working with last element different

2002-08-27 Thread Andrey Hristov
Today I am finished :((( I will make the patch tommorow I will send it here. array_diff_assoc()? Propose names. Regards, Andrey Hristov - Original Message - From: Marcus Börger [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: Brad LaFountain [EMAIL PROTECTED]; Stig

Re: [PHP-DEV] HUGE memory consumption on fread()

2002-08-14 Thread Andrey Hristov
Once you've eliminated that problem, I'd suggest that you use readfile() instead of manually looping; readfile should be much kinder to your hardware as it uses mmap, which means that PHP doesn't need to keep allocating small buffers in the loop, and that the OS can potentially share the

Re: [PHP-DEV] Moving away from ASP to PHP

2002-07-31 Thread Andrey Hristov
AFAIK, you can look at Zend Encoder, or ionCube Encoder (coupled with PHPA). Regard,s Andrey - Original Message - From: Anthony Kauffmann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 31, 2002 12:26 PM Subject: [PHP-DEV] Moving away from ASP to PHP Hi all, I've

[PHP-DEV] Re: [PHP-QA] Congratulations.

2002-07-31 Thread Andrey Hristov
http://php.net - Original Message - From: Sebastian Nohn [EMAIL PROTECTED] To: Xavier Spriet [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 31, 2002 7:22 PM Subject: RE: [PHP-QA] Congratulations. Hi, Well this may not be the appropriate place for this but

[PHP-DEV] Pass by reference

2002-07-23 Thread Andrey Hristov
been tuned this way) [/snip] Thanks Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Pass by reference

2002-07-23 Thread Andrey Hristov
on this newsgroup, Andi Gutmans said this sometime ago, i believe to the author of Phorum. That's where i originally got the info in the article. Regards, John Andrey Hristov [EMAIL PROTECTED] wrote in message 009e01c2322c$110bc8d0$1601a8c0@nik">news:009e01c2322c$110bc8d0$1601

Re: [PHP-DEV] The PHP Platform

2002-04-17 Thread Andrey Hristov
is about the xmlrpc-epi library : http://xmlrpc-epi.sourceforge.net Andrey - Original Message - From: Yasuo Ohgaki [EMAIL PROTECTED] Newsgroups: php.dev To: Brad Lafountain [EMAIL PROTECTED] Cc: Dave Mertens [EMAIL PROTECTED]; Andrey Hristov [EMAIL PROTECTED] Sent: Tuesday, April 16

Re: [PHP-DEV] The PHP Platform

2002-04-17 Thread Andrey Hristov
- Original Message - From: Dave Mertens [EMAIL PROTECTED] To: Ken Egervari [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, April 16, 2002 7:23 PM Subject: Re: [PHP-DEV] The PHP Platform And because i like PHP i'm still promoting it within my company. But no-one is helping me!!

[PHP-DEV] Problems with my SMTP

2002-04-17 Thread Andrey Hristov
I want to excusefo that some of my emails come quite later then the moment I sent them. This is the case with the message to Yasuo about SOAP and xmlrpc-epi. My excuses again. Andrey -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Andrey Hristov
Hi I know that there are RPC and SOAP classes. But that is not the point that i wanted to make. What i'm trying to say is that companies never hear about PHP. OK, they hear about the MIME bug and did you know what my boss said?? You see, PHP is just as bad as ASP, so why use PHP and not ASP?

Re: [PHP-DEV] The PHP Platform

2002-04-15 Thread Andrey Hristov
I really have to fight within the company i work to keep PHP. Do you know what PHP really needs? Good native XML and SOAP support.. Without that it's very hard to convince my boss that PHP is the right tool for the job. I develop for a living. And i'm not only programming in PHP. I do also

Re: [PHP-DEV] object refrences (POSSIBLE MAJOR BUG)

2002-04-11 Thread Andrey Hristov
I receive this: object(foo)(1) { [bar]= object(bar)(1) { [tmp]= string(23) why does this add a ref } } As far as I can see, there is an reference. Andrey - Original Message - From: brad lafountain [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 11, 2002 7:37

Re: [PHP-DEV] object refrences (POSSIBLE MAJOR BUG)

2002-04-11 Thread Andrey Hristov
Not sure but I think that the answer is maybe on pages 8 and 9 here http://www.zend.com/engine2/ZendEngine-2.0.pdf What do you think? Andrey - Original Message - From: brad lafountain [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, April 11

Re: [PHP-DEV] object refrences (POSSIBLE MAJOR BUG)

2002-04-11 Thread Andrey Hristov
But dereferncing like this $foo-bar()-fubar is feature of Z2 or not? Till today I didn't know that my 4.1.1(or 2) not sure can do this kind of dereferencing. Andrey - Original Message - From: brad lafountain [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED

[PHP-DEV] RC3

2002-04-11 Thread Andrey Hristov
Does the RC3 will be available tonight(GMT+3) or it is scheduled for tommorow's night? Andrey -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] classes, instances objects in ZE2

2002-04-09 Thread Andrey Hristov
of compiler( not sure if +it is possible but what about comilation to Java bytecode or .net MSIL - I read somewhere that ADA can be comiled to Java bytecode, why not have PHP compiled for it.). Regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

[PHP-DEV] PHP probkems with Apache 2.0.35

2002-04-09 Thread Andrey Hristov
May we place somewhere on the bug page or on the site that there are problems in compiling PHP with 2.0.35 support. I write this because too many people reports for this without searching if there is such a thing. Regards, Andrey -- PHP Development Mailing List http://www.php.net/ To

Re: [PHP-DEV] PHP Future

2002-03-24 Thread Andrey Hristov
Starting points is the Zend2 list. Go http://www.zend.com/lists.php and view the archive. Be aware that is not the full archive. Best regards, Andrey Hristov - Original Message - From: Richard Lynch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 25, 2002 8:20 AM Subject

[PHP-DEV] make crashing on libmysql

2002-03-16 Thread Andrey Hristov
With latest CVS php4-200203160300.tar.gz and ./configure --enable-wddx --enable-sysvsem --enable-sysvshm --enable-static --with-apxs=/usr/samba/users/andy/apache/bin/apxs --wit hout-pear --with-openssl --with-bz --with-iconv=/usr/samba/users/andy/413dev/php4-200203140300/ext/iconv and then

[PHP-DEV] why tempnam is used in libmysql bundleld with php

2002-03-16 Thread Andrey Hristov
I cannot compile the CVS because gcc complains about using function tempnam() In the man tempnam i found that: BUGS The precise meaning of `appropriate' is undefined; it is unspecified how accessibility of a directory is determined. Never use this func­tion. Use mkstemp(3) instead.

[PHP-DEV] probably the var_dump()'s problem is in its roots.

2002-03-14 Thread Andrey Hristov
will be the BC impact of these changes. May be the problem is deeper and has to be investigated. Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] probably the var_dump()'s problem is in its roots.

2002-03-14 Thread Andrey Hristov
Updatechanging to E_WARNING will be an error. Neverending recursion. Andrey Hristov - Original Message - From: Andrey Hristov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 14, 2002 11:55 AM Subject: [PHP-DEV] probably the var_dump()'s problem is in its roots

Re: [PHP-DEV] probably the var_dump()'s problem is in its roots.

2002-03-14 Thread Andrey Hristov
I received this in the browser : Fatal error: Nesting level too deep - recursive dependency? in c:\apache\htdocs\ad.php on line 3 Andrey - Original Message - From: Zeev Suraski [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, March 14, 2002

Re: [PHP-DEV] probably the var_dump()'s problem is in its roots.

2002-03-14 Thread Andrey Hristov
print_r() handles the recursion and says that there is a recursion. After Yasuo's patch var_dump() does the same. Why then other functions have to produce E_ERROR. Best regards, Andrey Hristov - Original Message - From: Zeev Suraski [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED

[PHP-DEV] print_r smater than var_dump

2002-03-13 Thread Andrey Hristov
behaviour? Isn't it better var_dump() to detect recursion like print_r() does? Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] ZLib (double free) bug

2002-03-12 Thread Andrey Hristov
What about implementing in build process check for the version of the zlib library. If =1.1.3 to give error message that =1.1.4 is needed. 1.1.4 is at : ftp://ftp.info-zip.org/pub/infozip/zlib/zlib-1.1.4.tar.gz Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net

Re: [PHP-DEV] ZLib (double free) bug

2002-03-12 Thread Andrey Hristov
Yeap. :(( the RH RPM is 1.1.3-25.7 ftp://updates.redhat.com/7.2/en/os/i386/zlib-1.1.3 -25.7.i386.rpm Andrey - Original Message - From: Stefan Roehrich [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 11:46 AM Subject: Re: [PHP

Re: [PHP-DEV] FREE_ZVAL and/or zval_dtor()

2002-03-12 Thread Andrey Hristov
As far as I see FREE_ZVAL is ZEND_FAST_FREE and the latter is not freeing memory just removes the zval from a list. So it is required to release the memory before that. Fix me if I'm wrong. Regards, Andrey - Original Message - From: Klaus Reimer [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: [PHP-DEV] FREE_ZVAL and/or zval_dtor()

2002-03-12 Thread Andrey Hristov
[EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 3:07 PM Subject: Re: [PHP-DEV] FREE_ZVAL and/or zval_dtor() Hi, On Tuesday 12 March 2002 14:01, Andrey Hristov wrote: As far as I see FREE_ZVAL is ZEND_FAST_FREE and the latter

[PHP-DEV] fopen with https support ?

2002-03-08 Thread Andrey Hristov
-PHP crashes - no function fsockopen_ssl(). After googling I found the post I put above. Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   >