Re: [PHP-DEV] Request: Get cURL 7.11.1 (current) included in PHP5 Win32 Builds?

2004-04-23 Thread Jason
build. Is this something I can do myself using freely available compilers? Any pointers, or links to existing documentation as to how I can contribute? Jason. --- Jason Donald <[EMAIL PROTECTED]> wrote: > Hello, > > Thank you in advance for any help you can provide. > >

[PHP-DEV] preg leak

2004-08-24 Thread Jason
g.php?id=28513 This leaks 50MB per second on my PHP5.0.0,5.0.1. It is probably the similar bug reported in PHP4. If you have any suggestions, please let me know! Sincere regards, Jason. ___ Do you Yahoo!? Win 1 of 4,000 free domain names from Ya

Re: [PHP-DEV] preg leak

2004-08-24 Thread Jason
Thanks for the feedback. A way to somehow limit the caching of expressions would be ideal, otherwise, the memory is lost forever with no way to reclaim it. I imagine a limited size cache which keeps only the most used expressions would be ideal. If anyone can tell me which source file has the

[PHP-DEV] curl-multi-info-read not functioning

2004-03-16 Thread jason
t, or skin the cat another way. Warm regards, Jason

[PHP-DEV] Patch to implement SPKAC/SPKI support within OpenSSL extension

2011-12-06 Thread Jason Gerfen
Over the weekend I went ahead and created a patch to implement support for SPKAC keys for the old/new KEYGEN element within the HTML5 spec. According to feature requests at bugs.php.net I came accross this existing request: https://bugs.php.net/bug.php?id=38917 I have filed a patch under this feat

[PHP-DEV] Patch for OpenSSL extension to implement SPKAC functions

2011-12-13 Thread Jason Gerfen
) openssl_spki_details(mixed pkey) Attached is the patch (tested against php-5.3.8 & openssl-1.0.0e) as well as a cli test case and module test case. -- Jason <> <> -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Patch inclusions

2012-01-24 Thread Jason Gerfen
I just have a general question regarding patch inclusions. When a patch is submitted is there a formal review and testing of the patch prior to inclusion? From what I have been following from this list is that the process is patches get applied to new/existing bug/feature requests, bug fixes are pr

Re: [PHP-DEV] Patch inclusions

2012-01-24 Thread Jason Gerfen
On Tue, Jan 24, 2012 at 1:48 PM, Christopher Jones wrote: > > > On 01/24/2012 03:36 AM, Jason Gerfen wrote: >> >> I just have a general question regarding patch inclusions. When a >> patch is submitted is there a formal review and testing of the patch >> prior to

[PHP-DEV] Push Request #21

2012-04-03 Thread Jason Gerfen
Please bear with me as I am going to address a few things that (being new) I seem to have over looked upon my initial pull request @ https://github.com/php/php-src/pull/21. I have forked and submitted a push request to add native spkac functionality per a feature request @ https://bugs.php.net/bug

[PHP-DEV] Re: pre-compiler for PHP

2005-03-28 Thread Jason Barnett
Your (long) message would be better asked on the php-general list so that poor slobs like me can answer it instead of taking up valuable developers' time. The short answers to your questions: - Smarty or something similar can handle "pre-compiling" (google for "PHP templating") - If your IDE doesn

[PHP-DEV] Re: Contributing

2005-04-01 Thread Jason Barnett
David Mytton wrote: > //Hi,// > // > //I am interested in contributing to PHP now that I have been using it > for 2 years or so. I was wondering how to get involved. I am not able to > help with the development of the language itself but I would be > interested in verifying bugs, writing documentat

[PHP-DEV] Re: make new return a reference to existent object

2005-05-09 Thread Jason Barnett
Leonardo Pedretti wrote: I would like (for code cleanliness purposes) to make 'new' return a reference to an already created object under certain circumstances without using a factory, is it possible? Thanx "Under certain circumatances" ? ... If it's only under certain circumstances that you wan

Re: [PHP-DEV] Re: make new return a reference to existent object

2005-05-09 Thread Jason Sweat
ispers "old" into the conversation and runs away It's not "old", it is an experienced object ;) Regards, Jason http://blog.casey-sweat.us/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] make new return a reference to existent object

2005-05-09 Thread Jason Garber
Hello, -1 New implies "new". Use a factory. Maybe we should add an old construct: $object = old MyClass(); Just kidding :) -- Best regards, Jasonmailto:[EMAIL PROTECTED] Monday, May 9, 2005, 10:30:56 AM, you wrote: LP> I would l

Re: [PHP-DEV] Re: new overloading feature?

2005-05-10 Thread Jason Sweat
cess it from within the class itself. > > Is there a way to reference constants from the same class (or dervived > class) in a friendlier way? Hi Markus, I often use self::SELF_EXPLAINING_CONSTANT_NUMBER_ONE when in context of a class method itself. HTH Regards, Jason http://blog.c

Re: [PHP-DEV] PHP 5.1

2005-06-06 Thread Jason Garber
rating to E_ALL | E_STRICT error reporting. If there was any way to accommodate this with userland PHP code, I would have already done it. However it is an engine level function that has to be added to the core of PHP. +ALot Thanks. -- Best regards, Jason

Re: [PHP-DEV] PHP 5.1

2005-06-06 Thread Jason Garber
nt to get something like this: $value = (integer) (isset($myBigArray['SomeKey1']['SomeOtherKey']) ? $myBigArray['SomeKey1']['SomeOtherKey'] : 0); where $value = ifsetor($myBigArray['SomeKey1']['SomeOtherKey'], 0); is a bit clean

Re: [PHP-DEV] PHP 5.1

2005-06-07 Thread Jason Garber
problems or annoyances to PHP? All in all, I think if everyone stops being religious about goto, and logically evaluates it, we can quickly come to a conclusion. -- Best regards, Jasonmailto:[EMAIL PROTECTED] -- PHP Internals - PHP Runtime Development Mailing L

Re: [PHP-DEV] PHP 5.1

2005-06-13 Thread Jason Garber
ct that will speed up PHP, produce cleaner code, and encourage the adoption of E_ALL error reporting. Thanks. -- Best regards, Jasonmailto:[EMAIL PROTECTED] Monday, June 13, 2005, 8:23:17 PM, you wrote: NB> Rob, NB> I agree with you entirely. It

Re: [PHP-DEV] In regards to E_STRICT and PHP5

2005-06-16 Thread Jason Garber
- Best regards, Jasonmailto:[EMAIL PROTECTED] Thursday, June 16, 2005, 3:09:43 PM, you wrote: b> --- George Schlossnagle <[EMAIL PROTECTED]> wrote: >> On Jun 16, 2005, at 2:50 PM, boots wrote: >> > --- Andi Gutmans <[EMAIL PROTECTED]&

Re: [PHP-DEV] In regards to E_STRICT and PHP5

2005-06-16 Thread Jason Garber
Hello Rasmus, Thanks. I guess I did not realize that because all of my application logic is included after I set error_reporting() Thanks for pointing this out. -- Best regards, Jasonmailto:[EMAIL PROTECTED] Thursday, June 16, 2005, 4:32:11 PM, you wrote

Re: [PHP-DEV] Is it possible to add changes to 4.x version?

2005-06-21 Thread Jason Sweat
o Ilia could hand the release coordinator job off to you ;) Regards, Jason http://blog.casey-sweat.us/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: SOAP SSL support doesn't work when allow_url_fopen is turned off

2005-07-28 Thread Jason Sweat
unctions (eval, echo).. that would cause other problems (like a > disabled "return"), though. > > S I think Zeev's earlier comment about "If their aim is that good, they deserve to be shot in the foot" applies equally well to "disabled "return" "

Re: [PHP-DEV] PHP 6.0 Wishlist

2005-08-14 Thread Jason Sweat
ication" object which was basically identical to this concept. I seem to recall using it for configuration kinds of thing (db connections, etc). I have resorted to caching for similar needs in PHP, I think $_GLOBAL_SESSION would be welcome addition, perhaps even allowing for customs session handler

[PHP-DEV] unable to create class from constant

2005-09-19 Thread Jason Sweat
ions exhibit the same behavior. Clearly there is an easy work around: $ php -r 'define("X", "stdClass"); $y = X; $x = new $y; var_dump($x);' object(stdClass)(0) { } But I was wondering if anyone could enlighten me as to why php would be upset interpreting th

Re: [PHP-DEV] unable to create class from constant

2005-09-19 Thread Jason Sweat
ould have to first be thought of as the class name, but if that does not exist, php is not then checking to see if it is actually a defined constant. My questions was basically is this a performance issue or just an undesired behavior for some other reason? Regards, Jason http://blog.casey-swea

Re: [PHP-DEV] $ref =& $this;

2005-10-03 Thread Jason Sweat
ch are no longer compatable with PHP5. Regards, Jason http://blog.casey-sweat.us/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] PHP Macros

2005-11-15 Thread Jason Garber
of one, it will do a little token-replacing before compiling it... Is it technically doable? Thanks guys. -- Best regards, Jason Garber mailto:[EMAIL PROTECTED] -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] namespace separator ideas

2005-11-26 Thread Jason Garber
Hello, I as a userland library author, would appreciate namespaces quite a bit. Here is an idea: namespace1..class() $x = new MyApp..MemberOrder(); -- Best regards, Jasonmailto:[EMAIL PROTECTED] Saturday, November 26, 2005, 3:52:35 PM, you wrote: GB

Re: [PHP-DEV] Re: namespace separator poll, update

2005-11-27 Thread Jason Sweat
he separator, after all namespace class->method() looks great in an email, why not in code? ;) Regards, Jason http://blog.casey-sweat.us/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Something (was: Re: [PHP-DEV] Re: Labeled Breaks (not the G-word))

2005-11-28 Thread Jason Garber
methodology of adding many features, but not sacrificing speed, stability, or security. Thanks. PS: This whole issue strangely reminds me of http://slashdot.org/articles/04/01/08/0111228.shtml?tid=152&tid=185 -- Best regards, Jasonmailto:[EMAIL PROTECTE

Re: [PHP-DEV] Re: Basic Namespace Requirements

2005-11-28 Thread Jason Garber
and the benefit of being able to use "::". Please take a moment to explain, because I am an avid user, not a tokenizer :) -- Best regards, Jasonmailto:[EMAIL PROTECTED] Monday, November 28, 2005, 5:25:41 PM, you wrote: >> So, the question

Re: [PHP-DEV]

2005-11-30 Thread Jason Garber
Hello Mike, Same at my company. mailto:[EMAIL PROTECTED] Wednesday, November 30, 2005, 4:31:58 AM, you wrote: MH> Just FYI, the lack of tags on all development projects at my company. MH> Mike MH> On Mon, 28 Nov 2005 20:29:42 +0100 MH> Marcus Boerger <[EMAIL PROTECTED]> wrote: >> Hello

Re: [PHP-DEV] why is '01' == '1.'?

2005-12-15 Thread Jason Sweat
s, but this can be dangerous. phpDocumentor, for instance > uses this code: > > if (in_array(substr($ltrimword, 0, 2), array('1.', '0.'))) Perhaps if (preg_match('/^[10]\./',$ltrimword)) would be both more concise and express your intent better? Regards,

Re: [PHP-DEV] Re: Named arguments revisited

2006-01-11 Thread Jason Garber
SOME DEFAULT VALUE; is_null($needle) && $text = SOME DEFAULT VALUE; is_null($strip_links) && $text = SOME DEFAULT VALUE; ... } In that way, the user doesn't have to remember the default values, just the offsets. Best wishes with

Re: [PHP-DEV] Re: Named arguments revisited

2006-01-12 Thread Jason Garber
Hello Jared, JW> PHP is all about using a simple means to an end and getting the job JW> done. Named parameters makes coding easier, not harder. Well stated. -- Best regards, Jasonmailto:[EMAIL PROTECTED] -- PHP Internals - PHP Runtime Development Mailin

Re: [PHP-DEV] Re: Named arguments revisited

2006-01-12 Thread Jason Garber
Hello Andi, I think the "sexy" syntax is a significant plus, even if associative arrays were used in the implementation. Is it a complex thing to implement? -- Best regards, Jasonmailto:[EMAIL PROTECTED] Thursday, January 12, 2006, 6:44:59 PM, you

Re: [PHP-DEV] Re: Adieu register_globals

2006-03-06 Thread Jason Garber
Hello Zeev, I'd be happy to do this. Do you want this placed in a function or just sample code to post somewhere? -- Best regards, Jasonmailto:[EMAIL PROTECTED] Monday, March 6, 2006, 6:38:34 PM, you wrote: ZS> A part of the decision was to supply

Re: [PHP-DEV] Passing functions to function by reference

2006-04-26 Thread Jason Garber
x27;default') would go a long way to accommodate E_STRICT code. -- Best regards, Jasonmailto:[EMAIL PROTECTED] Wednesday, April 26, 2006, 6:41:26 PM, you wrote: RL> Brian Moon wrote: >> In PHP4, you could do: >> >> function test() >>

[PHP-DEV] private, protected, readonly, public

2006-05-11 Thread Jason Garber
Best regards, Jason Garber mailto:[EMAIL PROTECTED] IonZoft, Inc. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] private, protected, readonly, public

2006-05-12 Thread Jason Garber
. I'm not talking about adding hundreds of new features, or turning PHP into the next java. It's about real business cases. It's not about what YOU WOULD NOT use, it's about what a lot of people need. -- Best regards, Jason Garber mailto:[EMAIL

Re: [PHP-DEV] private, protected, readonly, public

2006-05-13 Thread Jason Garber
. How difficult would it be to build this into the PHP engine? -- Best regards, Jasonmailto:[EMAIL PROTECTED] Saturday, May 13, 2006, 5:27:34 AM, you wrote: MB> Hello Etienne, MB> Friday, May 12, 2006, 2:11:38 PM, you wrote: >> Hi, >> my 2c:

Re: [PHP-DEV] private, protected, readonly, public

2006-05-15 Thread Jason Garber
ly be used where __get(), __set() used to be used - it won't confuse the end users who do not care about it. (get/set is a lot more complex). Thanks! -- Best regards, Jasonmailto:[EMAIL PROTECTED] Monday, May 15, 2006, 2:15:50 PM, you wrote: ZS> I h

Re: [PHP-DEV] private, protected, readonly, public

2006-05-16 Thread Jason Garber
do to help us find this stuff out? -- Best regards, Jasonmailto:[EMAIL PROTECTED] Tuesday, May 16, 2006, 5:41:31 PM, you wrote: AG> Where would readable be enforced? Would it try and prevent getting AG> references to it? Are there any internal functions/cl

Re: [PHP-DEV] private, protected, readonly, public

2006-05-16 Thread Jason Garber
lease clarify. Thanks! -- Best regards, Jasonmailto:[EMAIL PROTECTED] Tuesday, May 16, 2006, 5:49:45 PM, you wrote: MB> Hello Andi, MB> nothing else needs to be fixed. The patch considers a reference as a write MB> operation as well as anything els

Re: [PHP-DEV] private, protected, readonly, public

2006-05-16 Thread Jason Garber
not everyone does the same things with PHP that you do - you apparently haven't run into the need for it. That's okay, but others have. -- Best regards, Jasonmailto:[EMAIL PROTECTED] -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe

Re: [PHP-DEV] private, protected, readonly, public

2006-05-16 Thread Jason Garber
need to add tests to check out the new readable patch. -- View the tests online: http://open.izrm.com/~jason/php-readable -- Download a .tgz - just unpack it and it's ready to go: http://open.izrm.com/~jason/download/php-readable.tgz -- Get it with SVN: svn checkout svn:

Re: [PHP-DEV] private, protected, readonly, public

2006-05-17 Thread Jason Garber
Hello Hannes, Nothing is wrong, I presume. Ignorance on my part. Thanks. -- Best regards, Jasonmailto:[EMAIL PROTECTED] Wednesday, May 17, 2006, 7:50:47 AM, you wrote: HM> Hi Jason >> I've put together a simple test framework and a 18 te

[PHP-DEV] PHP Cookie Class

2006-06-14 Thread Jason Boudreault
So, I found myself wondering today why PHP has no built in way to treat cookies as objects. Why? I've already written my own class, but, we should implement this! $cookie = new Cookie(); if (!isset($cookie->username)) { $cookie->username = "george"; $cookie->save(); } ^^ is nice, I wa

Re: [PHP-DEV] Date flamewar summary

2006-07-19 Thread Jason Sweat
On 7/19/06, Alan Knowles <[EMAIL PROTECTED]> wrote: +1 for adding the namespace patch in :) - oh well I can always dream... Regards Alan +1 dreamer ( and +1 annoying de-lurker voting because he thinks it is american idol ;) Regards, Jason http://blog.casey-sweat.us/ -- PHP Internals

Re: [PHP-DEV] Method inheritance and parent classes

2006-08-04 Thread Jason Sweat
on2/dp/templateMethod.html -- Regards, Jason http://blog.casey-sweat.us/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: jazzadaman6969

2006-12-12 Thread jason koch
im not even sure wtf a PECL is but i have some errors so i try this -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] OpenSSL ext. improvements for authenticated cipher modes.

2015-01-31 Thread Jason Gerfen
On Sat, Jan 31, 2015 at 8:53 AM, Leigh wrote: > Hi list, > > A couple of bug reports have highlighted the fact that our > openssl_encrypt and openssl_decrupt functions have no way of getting > or setting tags required for authenticated cipher modes (i.e. GCM, > CCM, OCB (not sure if this is avail

Re: [PHP-DEV] OpenSSL ext. improvements for authenticated cipher modes.

2015-02-02 Thread Jason Gerfen
On Mon, Feb 2, 2015 at 3:58 AM, Leigh wrote: > On 2 February 2015 at 10:57, Leigh wrote: > > length (not sure how of > > Not sure how often tag lengths aside from 16 are used. > ​ According to documentation provided about the OCB mode of AES it says the following: Section 3: The scheme > The

[PHP-DEV] Should "apc.slam_defence" and "apc.write_lock" be turned on at the same time?

2012-10-21 Thread Jason Gu
Hi Internals I wondering if "apc.slam_defence" and "apc.write_lock" should be turned on at the same time? The default for APC v3.1.13 have both settings turned on. But the documentation says "apc.slam_defence is Deprecated by apc.write_lock." http://www.php.net/manual/en/apc.configuration.

[PHP-DEV] Policy on removal of push?

2013-01-29 Thread Jason Gerfen
Is there a procedure to take regarding removal of a push to the github repo or do you simply close it. I would like to re-submit a push request against the 5.5 branch while removing the old push request. Also can I obtain some information on the current state of new function extending regarding ac

[PHP-DEV] Status of pull request

2013-02-13 Thread Jason Gerfen
Is it considered spamming the list to check the status of a pull request? I am going to ask any ways, hope it doesn't offend. The pull request addresses bug fix/feature request #38917 implementing native signed public key & challenge support to the OpenSSL extension. Details can be found @ https:/

Re: [PHP-DEV] Status of pull request

2013-02-13 Thread Jason Gerfen
Thanks! It simply implements native support for creating, parsing & exporting details of SPKAC strings sent from browsers using the HTML5 KeyGen element (even though the element has been around since Netscape 1 or 2). On Wed, Feb 13, 2013 at 10:34 AM, Lars Strojny wrote: > Hi Jason, >

[PHP-DEV] Pull request status

2013-04-30 Thread Jason Gerfen
Hello, I realize testing and bug fixes are taking place for the latest beta release, so I apologize in advance if everyone is fairly busy. I was just checking on the status of pull request #267 ( https://github.com/php/php-src/pull/267) addressing bug report #38917 ( https://bugs.php.net/bug.php?i

[PHP-DEV] Account request

2013-05-01 Thread Jason Gerfen
Pierre Joye suggested that I request an account to help maintain the OpenSSL extension as per our discussion on pull request #267. -- Jas

[PHP-DEV] VCS Account Request: jas

2013-05-01 Thread Jason Gerfen
pierrejoye -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-CVS] com php-src: Address feature request #38917 for native SPKAC (HTML5 keygen element) support: ext/openssl/openssl.c ext/openssl/php_openssl.h ext/openssl/tests/openssl_spki_

2013-05-21 Thread Jason Gerfen
HP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > > -- Jason Gerfen http://www.github.com/jas- <http://phpdhcpadmin.sourceforge.net>

[PHP-DEV] CVS Account Request: jase007

2003-06-18 Thread Jason Dellavedova
PHP Programming Development -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CAPTCHA program on CVS account request?

2007-06-18 Thread Jason Sweat
allenge any spammer to try cracking it! Love, Hannes http://www.php.net/cvs-php.php Looks like somebody forgot the "I want an @php.net email address" in the list of reasons why they are requesting an account ;) Regards, Jason http://blog.casey-sweat.us/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Multi-Method Dispatch in PHP 5.1?

2004-04-20 Thread Jason Garber
//do something or return $this->Foo_Otherbar($p1); } } ... } ~Jason At 4/21/2004 07:32 AM +0200, Michael Walter wrote: Christian Schneider wrote: Sebastian Bergmann wrote: Since we introduce class type hints in PHP 5.0 I think it would be a good thing [tm] to add multi-meth

Re: [PHP-DEV] Multi-Method Dispatch in PHP 5.1?

2004-04-21 Thread Jason Garber
uot; It may mean adding a new reserved word though. ~Jason At 4/22/2004 01:29 AM +0200, Marcus Boerger wrote: Hello Andi, the patch is here. It's a bit outdated but shouldn't cause much problems to apply after RC2. It allows "Class", "Array" but atm misses "Reso

[PHP-DEV] Request: Get cURL 7.11.1 (current) included in PHP5 Win32 Builds?

2004-04-22 Thread Jason Donald
current version of cURL? I have no idea who is in charge of getting curl into Win32 builds, perhaps you could point me in the right direction? Thank you again, Jason __ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for

Re: [PHP-DEV] Performance Consideration of 1 class per file

2004-04-24 Thread Jason Garber
include the 22 files (2108 lines) - It took .002 seconds to finish the script, write the output, and get to the bottom. Obviously, the act of including the files took the longest. How much of that time was filesystem stats, and how much was PHP loading, parsing, and executing the content? If

Re: [PHP-DEV] [RFC] Type hints

2004-05-11 Thread Jason Garber
//... elseif($c instanceof ClassLoader) //... else //Throw an error } } Using this method, you can easily solve the issue pointed out above, while allowing the type hint to be strict. ~Jason $works= UserClass::forName('MySQLConnection'); (not

Re: [PHP-DEV] [RFC] Type hints

2004-05-10 Thread Jason Garber
e used very simply, but still has the low-level power to accommodate all the other things that one wishes to accomplish. Let's keep it that way. ______ Jason Garber President & Chief Technology Officer IonZoft, Inc. 814.742.8030 :: [EMAIL

Re: [PHP-DEV] [RFC] Type hints

2004-05-10 Thread Jason Garber
nt to allow NULL's not use type hints at all..." +1 __ Jason Garber President & Chief Technology Officer IonZoft, Inc. 814.742.8030 :: [EMAIL PROTECTED] :: http://IonZoft.com __

Re: [PHP-DEV] Implicit Arrays and E_STRICT

2004-05-07 Thread Jason Garber
;m in favor of issuing an E_NOTICE in response to this. ~Jason At 5/8/2004 12:43 AM +0200, Marcus Boerger wrote: Hello Sara, i like to see one of those too and i have no preference for one of them. marcus Friday, May 7, 2004, 11:05:15 PM, you wrote: > This topic got quietly dropped last week,

Re: [PHP-DEV] Javascript / Php

2004-04-28 Thread Jason Garber
ated until long after PHP is finished. ~Jason At 4/28/2004 02:37 PM +0200, Kyle Vorster wrote: document.write(screen.width);"; $width = "document.write(screen.height);"; if (($height == "640") && ($width == "480")) { echo "height == 640

Re: [PHP-DEV] constant name

2004-05-05 Thread Jason Garber
Does it output "barfoo" or "bar"? ~Jason At 5/5/2004 10:01 PM +0200, Mehdi Achour wrote: Hi ! The manual reads : "The name of a constant follows the same rules as any label in PHP. A valid constant name starts with a letter or underscore, followed by any number of letters

Re: [PHP-DEV] Re: ZendEngine2 / zend_ini_parser.y zend_ini_scanner.l

2004-05-17 Thread Jason Garber
It may be worth noting the way MySQL AB has been rolling out MySQL. They released 4.0.0 as a restructured release, did bug fixes and small changes up through 4.0.19, and are approaching the release of 4.1 with significant new features. It sounds like the same might apply here. ~Jason At 5/18

Re: [PHP-DEV] Re: PHP 5.0/5.1 (was: ZendEngine2 / zend_ini_parser.y zend_ini_scanner.l)

2004-05-19 Thread Jason Garber
k that earlier in July would be better, so that we don't have to wait too much longer before we branch 5.1. Maybe July 4? :) Zeev -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php ___

[PHP-DEV] Destructors

2004-05-23 Thread Jason Garber
on the $oDB object still being usable. How can this be structured to ensure that the DB object does not get released first? Thanks, Jason ______ Jason Garber President & Chief Technology Officer IonZoft, Inc. 814.742.8030 :: [EM

Re: [PHP-DEV] PHP5 rocks!

2004-06-08 Thread Jason Garber
To add.. The 18 of us here at IonZoft wish to thank all members of the PHP team and everyone who has helped make it happen. We have built a fast growing company totally focused on solutions based on PHP, and are very excited about the release of PHP5. Thanks! Jason Garber At 6/7/2004 09:51 PM

Re: [PHP-DEV] The open letter to Derick Rethans

2004-06-15 Thread Jason Garber
to the fullest. Sincerely, Jason Garber President IonZoft, Inc. At 6/15/2004 06:30 PM +0300, you wrote: On Tue, 15 Jun 2004 12:47:29 +0200 (CEST), Derick Rethans <[EMAIL PROTECTED]> wrote: On Tue, 15 Jun 2004, Alexander Valyalkin wrote: Today I checked file /win32/readdir.c Below you can vi

[PHP-DEV] Throw Question

2004-06-16 Thread Jason Garber
Consider the following: $x = FALSE; $x || throw new exception('Some Assertion'); I get the following Parse Error: error: parse error, unexpected T_THROW in /home/.../Z_Record.php on line 153 However, this code produces no errors.. $x = FALSE; $x || exit; Why is this? Thanks, Jason Gar

Re: [PHP-DEV] Throw Question

2004-06-16 Thread Jason Garber
That's what I figured. throw is a language construct. However, from the manual (http://php.net/exit): void exit ( int status) Note: This is not a real function, but a language construct. Why does $x || exit; work without a parse error? Thanks, Jason Garber At 6/17/2004 10:22 AM

[PHP-DEV] Array Question

2004-06-17 Thread Jason Garber
Hello, In PHP4 and PHP5 the following syntax works fine (note the last comma): array ( 1 => 'bob', 2 => 'sam', ); Is being able to have a comma at the END of an array definition a supported feature, or an undocumented feature that should not be u

Re: [PHP-DEV] Throw Question

2004-06-17 Thread Jason Garber
Thanks for the good explanation. ~Jason At 6/17/2004 02:10 PM +0200, Hartmut Holzgraefe wrote: Joseph Lee wrote: I guess "exit();" terminates execution within itself without returning to the caller, so that is no chance of getting a runtime error. parse error != runtime error bu

Re: [PHP-DEV] Array Question

2004-06-17 Thread Jason Garber
Cool. Thanks for updating the docs. I think it will save confusion with others in the future. ~Jason At 6/17/2004 11:34 PM +0200, Mehdi Achour wrote: This is now [1] a fixed documentation bug :) I didn't find anything about it in the ChangeLog, nor bugs.php.net, so I didn't include a

[PHP-DEV] Using PHP with JFFNMS and 64bit counters (SNMPv2 or SNMPv3)

2004-06-21 Thread Jason Humes
which I would love to get going. Can someone please point me in some direction on getting this working. Thanks for any help on this subject. Jason D. Humes Applied Computer Solutions Inc. 3020 St. Etienne Blvd. Windsor, Ontario Phone: (519) 944-4300 x211 Fax: (519) 944-4247 Email : [

RE: [PHP-DEV] keyword arguments?

2004-06-24 Thread Jason Garber
rays, it's simple to define default parameters. function foo($aArgs) { $aArgs += array('SomeID' => 0, 'DoThat' => TRUE); } Required keys can even be checked for with a quick array_diff(). For the amount of times that it would *probably* be used, I don't think it&#x

[PHP-DEV] Base and derived class construction

2004-06-26 Thread Jason Davidson
Hi, is there a reason that when a child class is instantiated the parent class constructor does not get called? The obvious workaournd for this is to simply call $this->parentConstructor(); in the child class constructor, however, this seems strange.. Am i way off base here...? Thanks Ja

Re: [PHP-DEV] Base and derived class construction

2004-06-26 Thread Jason Davidson
rited with parent class construction. Jason Stefan Walk <[EMAIL PROTECTED]> wrote: > > On Sat, Jun 26, 2004 at 08:03:12PM -0700, Jason Davidson wrote: > > Hi, is there a reason that when a child class is instantiated the parent > > class constructor does not get

[PHP-DEV] Typos

2004-06-26 Thread Jason Davidson
I made a few typos in my last post.. i should proof read a little. - parents defualt constructor ( one with arguments). should be 'without' arguments - that a child class can be inherited with parent class construction. should be 'without' parent class /.. sorry.. jaso

Re: [PHP-DEV] Base and derived class construction

2004-06-28 Thread Jason Davidson
Quite possible you had something else in mind, im just interested in knowing why its done this way, is it for performance sake, is it becuase you beleive php is more flexable this way, is it becuase it just happened to be as such... Im not being critical, Im being curious... Jason Marcus

Re: [PHP-DEV] what happened to that new isset() like language construct

2004-07-07 Thread Jason Garber
iting for it also :) Sincerely, Jason Garber At 7/7/2004 08:26 PM -0400, Marc Richards wrote: On 4/15/2004 Jason Garber asked about a new language construct to simplify testing if a variable isset() and assinging a default value for those that aren't. The thread title was "Construct Requ

Re: [PHP-DEV] what happened to that new isset() like language

2004-07-07 Thread Jason Garber
Hi Marc, At 7/7/2004 09:06 PM -0400, Marc Richards wrote: Jason Garber wrote: Hi Marc, What we basically settled on was to use this syntax (as a new language construct): $x = ifsetor(mixed variable, mixed default); So ?: is out then? Or just delayed until it can be tackled. Who am I to say it&#

Re: [PHP-DEV] what happened to that new isset() like language

2004-07-08 Thread Jason Garber
on() syntax? There has been quite a few reasons stated against the operator syntax, but I haven't heard any reason why we should not go with the function() syntax? Sincerely, Jason Garber -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Need two simple string funcs for parsing

2004-07-08 Thread Jason Garber
't know what sort of Zend license I'd require to be able to distribute free pre-compiled code. http://pecl.php.net I am also an experience C/C++ programmer and can write these functions myself. Before doing so, though, I'd like to know if I should bother. Would they make it into P

Re: [PHP-DEV] what happened to that new isset() like language

2004-07-08 Thread Jason Garber
d) have a short, concise, CLEAR name Comments? Sincerely, Jason Garber At 7/8/2004 07:48 PM -0400, you wrote: Jason Garber wrote: The original reason that I asked for this functionality was to make it significantly easier to work with E_ALL error reporting. When I say easier, I mean by reducing

Re: [PHP-DEV] Need two simple string funcs for parsing

2004-07-09 Thread Jason Garber
Sure, Any recommendations? -Jason At 7/9/2004 09:12 AM +0200, Marcus Boerger wrote: Hello Jason, could you do something about your mail client? It strips off or cuts the mail id so that mail threads loose their connection for all of us. regards marcus -- PHP Internals - PHP Runtime Development

[PHP-DEV] Segmentation Fault when using interface

2004-07-09 Thread Jason Garber
ED] dev]$ php -f Interface.php Segmentation fault -- On this server, It works fine: [EMAIL PROTECTED] Jason]$ php -v PHP 5.0.0RC3 (cli) (built: Jun 14 2004 14:04:10) Copyright (c) 1997-2004 The PHP Group Zend Engine v2.0.0RC3, Copyright (c) 1998-2004 Zend Technologies [EMAIL PROTECTED

Re: [PHP-DEV] Segmentation Fault when using interface

2004-07-09 Thread Jason Garber
Bug #29081 Segmentation Fault when using Interface http://bugs.php.net/bug.php?id=29081 -Jason At 7/9/2004 01:30 PM +0200, you wrote: On Fri, 9 Jul 2004, Jason Garber wrote: > Hello, > > I discovered this problem tonight while working on a new PHP 5 class that > uses an interfac

Re: [PHP-DEV] Segmentation Fault when using interface

2004-07-09 Thread Jason Garber
Sorry, The actual bug is http://bugs.php.net/bug.php?id=29080 29081 is a duplicate -Jason At 7/9/2004 05:16 PM -0400, Jason Garber wrote: Bug #29081 Segmentation Fault when using Interface http://bugs.php.net/bug.php?id=29081 -Jason At 7/9/2004 01:30 PM +0200, you wrote: On Fri, 9 Jul 2004

Re[2]: [PHP-DEV] New construct discussion Summary

2004-07-11 Thread Jason Garber
need it just as simply using already available syntax (ie a cast): $level = (integer) value($_SESSION['level'], 1); -- Best regards, Jasonmailto:[EMAIL PROTECTED] -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   >