[PHP-DEV] __call for the namespaces

2003-03-17 Thread Brad LaFountain
stuff like... http://server/some.wsdl";); // $s could be the namespace defined in the wsdl and of class myObject ?> ps: doSomething(); ?> results in... Fatal error: Internal Zend error - Missing class information for in c:\php\php5\Release_TSDbg\name.php(7) : ev

Re: [PHP-DEV] RPC Extension

2003-03-16 Thread Brad LaFountain
php_java:java:utils::Vector(); // and the java ext registered php_java well anyways it would be pretty cool. . . . If you couldn't tell im trying to convert ext/java to ext/rpc/java. I got the functions down, im still learning what ext/rpc is actually doing. But i'll really need the zend *t

[PHP-DEV] RPC Extension

2003-03-16 Thread Brad LaFountain
I was just playing with the RPC extension. Don't you think that the rpc layer should pass along TSRMLS_CC to all of the callbacks? rpc_call(rpc_string, void *, zval *, int, zval *** TSRMLS_CC); - Brad __ Do you Yahoo!? Yahoo! Web Ho

Re: [PHP-DEV] iterating objects with interfaces

2003-03-10 Thread Brad LaFountain
uld be spl::foreach spl::forward spl::key btw. what does 'spl' stand for? - Brad --- Andrei Zmievski <[EMAIL PROTECTED]> wrote: > Very cool. :) > > On Sun, 09 Mar 2003, Marcus Börger wrote: > > Hi, > > > > i've just done the first step for a

Re: [PHP-DEV] bug in zend_API.c (with patch)

2003-03-07 Thread Brad LaFountain
Why can't you just simply name your classes all lowercase. All of the extensions currently do this and it works fine. - Brad --- Eric Lambart <[EMAIL PROTECTED]> wrote: > Hello. > > After a short bout of hair-pulling, I have discovered the source (in the > Zend engine) o

Re: [PHP-DEV] Re: [SOAP] PEAR / Soap Problem

2003-02-12 Thread Brad LaFountain
sorry, ignore this, wrong list --- Brad LaFountain <[EMAIL PROTECTED]> wrote: > Well the PEAR::Soap is defintly more stable and has more features and > supports > more of the soap spec, where PECL/soap is written in C and is faster. There > are > some people using PECL/soap

[PHP-DEV] Re: [SOAP] PEAR / Soap Problem

2003-02-12 Thread Brad LaFountain
Well the PEAR::Soap is defintly more stable and has more features and supports more of the soap spec, where PECL/soap is written in C and is faster. There are some people using PECL/soap in production but it defintly still is still in a unstable mode. So its purely up to your needs. - Brad

Re: [PHP-DEV] Moving extensions to PECL

2003-01-13 Thread Brad Bulger
If I may, I'd like to suggest that if you want to emphasize PEAR in PHP5, that someone should look at bug 20933, to either verify that it is a bug, or make it clear that this new behavior is intended. (The bug is about isset() on a string subset like $a{1} always returning false.) Only because at

Re: [PHP-DEV] ZE2 , static variables and friends

2003-01-07 Thread Brad LaFountain
;.test::$foo->$how; then you would get the correct output. Get it? - Brad --- Mickael BAILLY <[EMAIL PROTECTED]> wrote: > > Why can't I do this: > -- > class test { > static $foo = ''; > } > class test2 { > var $how = 3; > } > &g

Re: [PHP-DEV] PHP in 2003 (leading to PHP 5)

2003-01-01 Thread Brad LaFountain
l the rest of the email ;) - Brad __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] T_PAAMAYIM_NEKUDOTAYIM

2002-12-16 Thread Brad LaFountain
> } > >> > >> $obj = new MyObject('out of this'); > >> > >> will print 'from MyObject'. > > > > > > This SHOULDN'T print 'out of this', This seems like a bug, and you > SHOULDN'T > > depen

Re: [PHP-DEV] T_PAAMAYIM_NEKUDOTAYIM

2002-12-16 Thread Brad LaFountain
ic method will just be the string of the current class? > > While, > > Class MyObject { > var $option; > function MyObject($option) { > $this->option = $option; > call_user_func(array('foo', 'bar')); > } > } > > w

Re: [PHP-DEV] $scalar{index} syntax

2002-12-11 Thread Brad Bulger
#x27;s the more correct way to do $string[2] to > make it clear that it is a character offset. This has been supported for > years and will not go away. > > -Rasmus > > On Tue, 10 Dec 2002, Brad Bulger wrote: > > > > > trying to fix bugs in some PEAR code, i notice

[PHP-DEV] $scalar{index} syntax

2002-12-10 Thread Brad Bulger
trying to fix bugs in some PEAR code, i noticed the person used a way of getting at the individual characters in a string: $string{2} === substr($string,2,1) is that old syntax or something? is there any reason to expect it to work in future versions? thanks -- PHP Development Mailing List

Re: [PHP-DEV] FR: echo line

2002-12-07 Thread Brad LaFountain
Do you realize how ugly that is? What benifit would that have over something way more readable like: \n"; } ?> -Brad --- Jari Vuoksenranta <[EMAIL PROTECTED]> wrote: > I have a feature request: I'd like to have '#' comment like > macro which would expa

Re: [PHP-DEV] Re: persistent java virtual machine under PHP

2002-12-04 Thread Brad LaFountain
It seems to me that libphp_java.so is unloaded every once in a while. > For example, global static variable defined in the module get > re-initialized every once in a while. Is this so? Are you sure its getting unloaded or is it starting up in another httpd? - Brad __

RE: [PHP-DEV] pecl extensions

2002-12-03 Thread Brad LaFountain
working sample of osmesa working. if you goto sf.net/projects/phpopengl there is a link that says phpopeng/osmesa in action, that link is broken cause i havn't paid for my dynamic ip account recently. if you wanna see it work ill give you my ip when i get home. - Brad > &

RE: [PHP-DEV] pecl extensions

2002-12-03 Thread Brad LaFountain
--- John Coggeshall <[EMAIL PROTECTED]> wrote: > > Brad: > > I'm going to take a real stab in the dark here and say that you know > Shane Caraveo. I was at PHPCon with him presenting in October and I was > talking about an idea I had to implement opengl in PHP...

Re: [PHP-DEV] pecl extensions

2002-12-03 Thread Brad LaFountain
--- Alan Knowles <[EMAIL PROTECTED]> wrote: > Brad LaFountain wrote: > > >I know I'm going to piss people off by asking this but how do I create a new > >pecl package? I think I want going to put php_opengl in there. See if gets > >anymore use. > >

[PHP-DEV] overridden php.ini directives in CLI version

2002-12-03 Thread Brad Bulger
shouldn't 'output_buffering' be overridden to 0 (off) in the CLI SAPI? doesn't help to override 'implicit_flush' but not that one. especially since there's no way to turn off the ini-level output buffering from a script. you can't end it with ob_end_*() and you can't set it with ini_set(). wherea

[PHP-DEV] pecl extensions

2002-12-02 Thread Brad LaFountain
I know I'm going to piss people off by asking this but how do I create a new pecl package? I think I want going to put php_opengl in there. See if gets anymore use. - Brad __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign u

Re: [PHP-DEV] call_stack

2002-11-27 Thread Brad Fisher
Andi Gutmans wrote: > At 03:41 PM 11/27/2002 +0100, Derick Rethans wrote: > >On Wed, 27 Nov 2002, Miham KEREKES wrote: > > > > > Hi! > > > > > > I'm new to this list, I want to know if there is any function which > > > could return the actual call stack, or is it planned to be added? > > > It coul

[PHP-DEV] cvsclean removes pear/PEAR on OS X 10.2

2002-11-24 Thread Brad Bulger
I think this is the darned case-insensitivity causing a problem again. the pear/.cvsignore file lists 'pear' - meaning the installer, presumably - but when cvsclean does a remove of it, it ends up removing the PEAR directory. (this came up because the 10.2 upgrade installed a too-new version of

[PHP-DEV] ZEND_PUTC question

2002-11-21 Thread Brad Bulger
I was looking at compile warnings for 4.3, and came across this in Zend/zend.h /* output support */ #define ZEND_WRITE(str, str_len)zend_write((str), (str_len)) #define ZEND_PUTS(str) zend_write((str), strlen((str))) #define ZEND_PUTC(c)zend_write(&(c),

Re: [PHP-DEV] on the subject of overloading: __call()

2002-11-17 Thread Brad Bulger
On Sun, 17 Nov 2002, Stanislav Malyshev wrote: > BB>> related topic: in the current state of ze2, there are several ways to > BB>> call methods directly that can't be emulated by call_user_func() - > BB>> calling self::method() for instance, or the visibility of $this if > BB>> you call class::met

[PHP-DEV] on the subject of overloading: __call()

2002-11-15 Thread Brad Bulger
was there discussion about the interaction of __call() and methods which declaring their arguments as references? there's no way at present to make this work, as far as i can tell. seems like it could just be a documented limitation, but i thought i'd check. related topic: in the current state of

Re: [PHP-DEV] $HTTP_RAW_POST_DATA

2002-11-10 Thread Brad Bulger
On Sun, 10 Nov 2002, Rasmus Lerdorf wrote: > Hrm.. Ok, actually Hartmut changed this recently. See: > > >http://cvs.php.net/diff.php/php4/main/php_content_types.c?login=2&r1=1.21&r2=1.22&ty=u > > It works when you turn on always_populate_raw_post_data, right? kind of. it doesn't quite follow

Re: [PHP-DEV] PHP and Java

2002-10-24 Thread Brad LaFountain
So except for the static access to "class" from helloHome It should work. Maybe if I get borred some time i'll try it. > 5) Who is responsible for development of this extension? Sam Ruby was the orig developer. I've played with it. I don't think anyone has done any

Re: [PHP-DEV] short_open_tag

2002-10-21 Thread Brad LaFountain
It would be very bad for php if short tags were disabled. I 100% agree with andi. There are ways of dealing with xml and php without pissing off the WHOLE php user world. I don't even use long tags EVER, nor will I want to start. - Brad --- Andi Gutmans <[EMAIL PROTECTED]> wrote: >

Re: [PHP-DEV] trying to understand zvals

2002-10-18 Thread Brad LaFountain
count = 1; } this works, but i don't know if its the best way to do it. - Brad --- "Tim Daly, Jr." <[EMAIL PROTECTED]> wrote: > > I'm trying to do some extension programming, and I'm pretty confused > by the whole zval thing. In particular, references

Re: [PHP-DEV] default properties (in c)

2002-10-09 Thread Brad LaFountain
ntry = zend_register_internal_class(&tmp_class_entry); MAKE_STD_ZVAL(obj_inst); object_init_ex(obj_inst, tmp_class_entry); add_property_null(obj_inst, "prop_name"); // defined in zend_API.h MAKE_STD_ZVAL(array); array_init(array); add_next_index_string(array, "

Re: [PHP-DEV] default properties (in c)

2002-10-08 Thread Brad LaFountain
What engine are you working with 1 or 2? -brad --- "Tim Daly, Jr." <[EMAIL PROTECTED]> wrote: > > Hi everybody. I'm working on an extension that creates classes, and I > want to add class variables to the classes. It looks like, > internally,

Re: [PHP-DEV] Calling an external C function under Unix

2002-09-25 Thread Brad LaFountain
You could write a wrapper extension around your c libary. - brad --- Anna Sotnichenko <[EMAIL PROTECTED]> wrote: > Hello All! > > I want to transfer a PHP script with minimum changes from IIS under Win2000 > to Unix. My ISAPI PHP script calls some external C-functions th

Re: [PHP-DEV] destructor in domxml not freeing all memory, any clues?

2002-08-28 Thread Brad LaFountain
I don't think this is the problem but when using libxml i found i need to call xmlCleanupParser(); after I parse a file. - brad --- Christian Stocker <[EMAIL PROTECTED]> wrote: > Hi > > I just watched my apache and simply doing > > domxml_new_doc("1.0"); &

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

2002-08-27 Thread Brad LaFountain
Well I tried to use them like that, So I guess there is a little need. I wrote a simple php function to do the same thing. I would volunteer but I have alot of stuff going on. Maybe if I get borred sometime soon. - brad --- Stig Venaas <[EMAIL PROTECTED]> wrote: > On Tue, Aug 27, 2

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

2002-08-27 Thread Brad LaFountain
1) ["blah"]=> int(1) } 1, "blah" => 1); $a1 = array("b" => 1, "blah" => 2); var_dump(array_diff($ar, $a1)); ?> array(0) { } I can't look at this right now maybe I can later or tomarrow. - Brad ___

Re: [PHP-DEV] Interfaces in PHP

2002-08-21 Thread Brad LaFountain
--- Tim Converse <[EMAIL PROTECTED]> wrote: > > --- Brad LaFountain <[EMAIL PROTECTED]> wrote: > > > 2) Interfaces as they exist in java don't really give you > > much in a stripting > > language but if you insist on having something like that &

Re: [PHP-DEV] Interfaces in PHP

2002-08-20 Thread Brad LaFountain
emented would be easy. 1) create a interface keyword : which is easy 2) in that state allow only function (name)(params)(semi) : i believe this is easy 3) internally compile them as normal functions with no implemntation or see if an e_notice can be thrown. : pretty sure

Re: [PHP-DEV] PATCH: debug_backtrace() function for 4.3-dev/ZE1

2002-08-20 Thread Brad LaFountain
> stuff from being backported and got people to realize that shifting > priorities is right around the corner, then maybe it was worth it). ( I did get this outta this thread. ) Well I hope Thies will commit it. Im outta this thread. - Brad _

Re: [PHP-DEV] PATCH: debug_backtrace() function for 4.3-dev/ZE1

2002-08-20 Thread Brad LaFountain
First of all I wanna just say that I'm just stating my opnion. You seem to be getting angry. Im not trying to say your wrong and I'm right. Please don't take it like that. --- Zeev Suraski <[EMAIL PROTECTED]> wrote: > At 17:21 20/08/2002, Brad LaFountain wrote: > &g

Re: [PHP-DEV] PATCH: debug_backtrace() function for 4.3-dev/ZE1

2002-08-20 Thread Brad LaFountain
--- Zeev Suraski <[EMAIL PROTECTED]> wrote: > At 07:55 20/08/2002, Brad LaFountain wrote: > > You as a Zend owner who's business could be very propitable for Zend2 > > success > >or you as a php developer > > Brad, > > This is CLEARLY as PHP d

Re: [PHP-DEV] credit card processing

2002-08-19 Thread Brad House
(http://www.mcve.com) which has PHP scripts. Or you can use a service which will charge you additional per-transaction charges plus the credit-card processing percentage charged by visa/mc/etc I think Verisign's payflowpro has some php scripts. -Brad Toni Steimle wrote: > Hi list > &g

Re: [PHP-DEV] objects as string and arrays as string

2002-08-16 Thread Brad LaFountain
at could be introduced. As mentioned in the other posts you could either require to return a string or try and handle the recursion (maybe like var_dump currently does it). -brad --- Brad LaFountain <[EMAIL PROTECTED]> wrote: > I want to throw together a quick hack so that objects can

Re: [PHP-DEV] ZE2 and PHP

2002-08-16 Thread Brad LaFountain
unctionality, etc) ... > > > >1. When is ZE2 expected to be released (if its not already) > > My guess is early 2002. A zillion things may affect that release date, > though, so it really is just a guess. Don't you mean 2003? - brad __

[PHP-DEV] objects as string and arrays as string

2002-08-16 Thread Brad LaFountain
usefull is appending the word "Array" or "Object". Thoughts? - brad __ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Data Hiding Implementation in PHP Classes

2002-08-16 Thread Brad LaFountain
That .txt only talks about private members. Zend2 also implements protected data members. - brad --- Sander Roobol <[EMAIL PROTECTED]> wrote: > The Zend Engine 2 implements this. See http://www.php.net/ZEND_CHANGES.txt > > Sander > > On Fri, Aug 16, 2002 at 03:13:57AM

Re: [PHP-DEV] PHP extension initialisation

2002-08-15 Thread Brad LaFountain
--- Tom Oram <[EMAIL PROTECTED]> wrote: > Hi, > Can someone please answer my question? > > When running a PHP extension when PHP is running as an apache module on linux > it's module init function (PHP_MINIT_FUNCTION) gets called twice, once before > apache forks then once after, is there any wa

Re: [PHP-DEV] Method memory handling from an instanced object

2002-08-13 Thread Brad LaFountain
nce to that > object instance's variable memory space? Static varibles by definition (in all languages) are across all instances of an object. > If the method is not shared, could this cause an issue with a class that > has a lot of methods being instanced lots of time and takin

[PHP-DEV] overload() crashes in ZE2

2002-08-10 Thread Brad Bulger
trying to build CVS version with ZendEngine2 and use the overload extension. PHP crashes with a bus error on the call to overload(). it's a hash table problem, over my head for sure. i can't get this to work at all and wonder if it's a Darwin(OS X) issue. has anyone else run into this? this is t

Re: [PHP-DEV] phpthreads - hints anyone...

2002-08-03 Thread Brad LaFountain
This isn't always ideal. I would rather see the threads as a function not a separate file. Forcing threads to a file would be pretty limited. -brad --- Andi Gutmans <[EMAIL PROTECTED]> wrote: > I still think that if you're going to implement such a thread extension it >

Re: [PHP-DEV] Odd array problems

2002-08-02 Thread Brad LaFountain
Should be fixed. I swear there better not be anything else wrong with that code chage :) I know alot more how the engine handles arrays now :) - brad --- Dan Kalowsky <[EMAIL PROTECTED]> wrote: > Correction an update from a few mins ago results in the same output as > Chuc

Re: [PHP-DEV] HANDLE_BLOCK_INTERRUPTIONS

2002-08-02 Thread Brad LaFountain
Thanks.. I figured it out after looking at all the places where it was being used. The biggest use was when you are changing link'd lists or arrays. So i assumed it did something to that affect. - brad --- "Thies C. Arntzen" <[EMAIL PROTECTED]> wrote: > On Thu, Aug 01,

[PHP-DEV] HANDLE_BLOCK_INTERRUPTIONS

2002-08-01 Thread Brad LaFountain
HANDLE_BLOCK_INTERRUPTIONS(); HANDLE_UNBLOCK_INTERRUPTIONS(); what exactly does these do? - brad __ Do You Yahoo!? Yahoo! Health - Feel better, live better http://health.yahoo.com -- PHP Development Mailing List <http://www.php.net/&

Re: [PHP-DEV] array commits broke something

2002-08-01 Thread Brad LaFountain
Sorry.. i miss read your comment... you are correct I just fixed it commiting in a few min. - brad --- Brad LaFountain <[EMAIL PROTECTED]> wrote: > That was my fault. I did apply a patch that will fix that late > last nite. > > Just get the current CVS and it should work.

Re: [PHP-DEV] array commits broke something

2002-08-01 Thread Brad LaFountain
That was my fault. I did apply a patch that will fix that late last nite. Just get the current CVS and it should work. PS. array_pop/array_shift is tuns faster now :) - brad --- Jani Taskinen <[EMAIL PROTECTED]> wrote: > > Have you updated to the very latest? I'm un

Re: [PHP-DEV] phpthreads - hints anyone...

2002-07-31 Thread Brad LaFountain
Shane, I was in the Parrot session at OSCON and parrot is going to implement threads in the exact same way. One interp per thread with sharing memory. - brad --- Shane Caraveo <[EMAIL PROTECTED]> wrote: > Alan Knowles wrote: > > Im looking at adding threading to php, (for th

Re: [PHP-DEV] Session variables

2002-07-31 Thread Brad LaFountain
is the comparable way to do it with php? > > > Take a look at http://www.vl-srm.net/ > You are suggesting using srm for session handling? Thats a little mis-guided. php's built in session handling would do the job. -brad _

Re: [PHP-DEV] phpthreads - hints anyone...

2002-07-31 Thread Brad LaFountain
confrence and with stealing some ideas from perl we came up with a decent soulition. You might want to get ahold of him and see what he is going to do with it. -brad --- Alan Knowles <[EMAIL PROTECTED]> wrote: > Im looking at adding threading to php, (for the cgi/cli stuff).. &g

Re: [PHP-DEV] Bus error on CVS Head

2002-07-30 Thread Brad LaFountain
I get the same thing on Windows in debug mode. -brad --- Dan Kalowsky <[EMAIL PROTECTED]> wrote: > Hi, > > Building PHP and running a test script with the CGI or CLI on my MacOSX > machine results in a a Bus Error upon script completion. > > I have made a fresh check

Re: [PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-30 Thread Brad LaFountain
Sorry that was it... i swear i checked it out as rodif_bl.. -brad --- Rasmus Lerdorf <[EMAIL PROTECTED]> wrote: > And are you sure you have that tree checked out using the rodif_bl > account? Because you are in the ACL file. See CVS/Root in your checked > out tree. >

Re: [PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-30 Thread Brad LaFountain
$ cvs commit ext/standard/array.c cvs [server aborted]: "commit" requires write access to the repository cvs commit: saving log message in /tmp/cvs61090800.1 - brad --- Brad LaFountain <[EMAIL PROTECTED]> wrote: > Hmm... I tried it and it said i didn't have karm

Re: [PHP-DEV] php_strip_tags and bug 7472

2002-07-30 Thread Brad LaFountain
Ok that makes a little more sence. But instead of re-inventing the parser how about we do something with the builtin parser. I'll try to hack up something. - brad --- Rasmus Lerdorf <[EMAIL PROTECTED]> wrote: > Yeah, I wrote that code. > > I'm a little fuzzy on the ori

Re: [PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-30 Thread Brad LaFountain
Hmm... I tried it and it said i didn't have karma. I'll try again tonite. - brad --- Rasmus Lerdorf <[EMAIL PROTECTED]> wrote: > You have full karma to fix this. What makes you think you don't? > > On Tue, 30 Jul 2002, Brad LaFountain wrote: > > > Along

Re: [PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-29 Thread Brad LaFountain
Wrong patch file.. re-attaching. --- Brad LaFountain <[EMAIL PROTECTED]> wrote: > Along with fixing this bugs (16063 and 16068) I signifintly increased the > preformance of array_pop and array_shift. > > Here are some times on a 1.2ghz athlon. > $t = array_fill(0, $size,

[PHP-DEV] [PATCH] array_pop and array_shift (#16063, #16068)

2002-07-29 Thread Brad LaFountain
elves. -brad __ Do You Yahoo!? Yahoo! Health - Feel better, live better http://health.yahoo.com Index: ext/standard/array.c === RCS file: /repository/php4/ext/standard/array.c,v retri

[PHP-DEV] php_strip_tags and bug 7472

2002-07-29 Thread Brad LaFountain
ht be missing something obvious tho. Commenting out the case '"' fixes the bugs reported by 7427. I don't want to commit it if it will break anything else. Additionally it also keeps track of ('s and )'s. Is this needed as well? http://bugs.php.net/bug.php?id=7472 - brad

Re: [PHP-DEV] Going on vacation

2002-07-12 Thread Brad LaFountain
Thats not allowed andi! :) - Brad --- Andi Gutmans <[EMAIL PROTECTED]> wrote: > Hey, > > I'm going on a four day computer-less vacation starting tomorrow morning so > I won't be reading my Email. > If you guys send patches for the Engine 2 or other queries

Re: [PHP-DEV] widestring variable possible in php?

2002-06-26 Thread Brad LaFountain
By "widestring" do you mean a multi byte string? if yes take a look at the mbstring module. else don't know what you mean by widestring -brad --- Derek Aschenbrenner <[EMAIL PROTECTED]> wrote: > I am trying to assign a widestring to a variable in php? Is it possible

Re: [PHP-DEV] Re: [Zend Engine 2] RE: [PHP-DEV] REPOST: Class Autoloading [PATCH]

2002-06-26 Thread Brad LaFountain
an have that as a suggestion to people who use __autoload. Foo.php class Foo{} Bar.php class Bar{} MyFoo.php include_once("Foo.php"); class MyFoo extends Foo{} MyBar.php include_once("Bar.php"); class MyBar extends Bar{} auto_test.php - brad > > At 11:27 PM 6/11/20

Re: [PHP-DEV] Case Sensitivity is inconsitent inside Objects

2002-06-24 Thread Brad LaFountain
t there is no way to change the functionality in ZE1 cause when functions get compiled they get converted to LC. I think andy is doing something with the ability to get the case of a function but im not positive if this will fit here. - Brad __ D

Re: [PHP-DEV] Custom Extensions and Super Globals

2002-06-20 Thread Brad LaFountain
I believe you are looking for zend_register_auto_global(); - Brad --- Brian Moon <[EMAIL PROTECTED]> wrote: > I was just thinking about some of our code on dealnews.com and thought it > would be cool if we could write our own extension that would, among other > things, make a c

[PHP-DEV] phpopengl

2002-06-18 Thread Brad LaFountain
ating some documentation? Someone recently asked me how to install it so this is why im bringing it up now. - brad __ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com -- PHP Development Mailing List <http://www

Re: [PHP-DEV] Instantiating Objects ?

2002-06-13 Thread brad lafountain
There is no transpartent way of creating a c++ object from php. What you can do is create a php extension that will proxy the calls to your c++ object. Once you do that you can pass anything into your c++ class (querystring). take a look at ext/* in the souce distribution. - brad --- Kevin

Re: [PHP-DEV] Memory Leaks /w nested classes

2002-06-10 Thread brad lafountain
--- Andre Christ <[EMAIL PROTECTED]> wrote: > Hi Brad, > > "Brad Lafountain" <[EMAIL PROTECTED]> wrote > > I use parent members all the time.. w/zend1 > > well, that's what I wanted to do until I discovered these entrys in my log > file whe

Re: [PHP-DEV] Memory Leaks /w nested classes

2002-06-10 Thread brad lafountain
I use parent members all the time.. w/zend1 - Brad --- Markus Fischer <[EMAIL PROTECTED]> wrote: > Hi, > > that's a limitation of the Zend Engine. It does not support > circular references (at least this is would Zeev told me last > time :) > >

[PHP-DEV] Re: [Zend Engine 2] RE: [PHP-DEV] REPOST: Class Autoloading [PATCH]

2002-06-10 Thread brad lafountain
will make php horibly look like java. One of the reasons java does this is cause you can't have 2 public classes in one file. We shouldn't force php developers to use one class per file just to use the "auto-loading" feature. - brad --- Andi Gutmans <[EMAIL PROTECTED]&

Re: [PHP-DEV] Fwd: REJECTED: <5.1.0.14.2.20020607225328.03df2740@127.0.0.1>

2002-06-07 Thread brad lafountain
I got it too.. - brad --- Andi Gutmans <[EMAIL PROTECTED]> wrote: > Any idea why I got this when posting to php-dev? > > Andi > > >Delivered-To: [EMAIL PROTECTED] > >Sender: <[EMAIL PROTECTED]> (reject) > >Date: Thu, 06 Jun 2002 08:50:05 -0700 >

Re: [PHP-DEV] Zend Engine expert wanted!!!!

2002-06-07 Thread brad lafountain
If this is your problem maybe a "offical" soultion to the problem should be thought. Like in your extension you can define a priority for loading and unloading your extension in the ini. Kinda like init.d. Has there been any discussion about this topic before. - brad --- Br

RE: [PHP-DEV] oo != php

2002-06-07 Thread brad lafountain
in(String args[]) in a class, and that gets run when a class with that name is loaded. Now this is stuff specfic to java! Not MI or public/private members these features have been around way before java was ever thought of!!! - Brad __ Do You Yahoo!? Yah

Re: [PHP-DEV] Re: [Zend Engine 2] PHP in the future

2002-06-07 Thread brad lafountain
SP but it > doesnt fit for the majority of the projects I do (right tool for the right > job). Giving PHP extra OOP capabilities would extend what I can do with > PHP and where I can use it. This isnt about cost of using PHP over Java > its about the right tool for the right job to

Re: [PHP-DEV] Re: [Zend Engine 2] PHP in the future

2002-06-06 Thread brad lafountain
Andi, Before you go ahead with this I would like to discuss it some more too. I'm wondering if we can fully support MI but i don't want to start this conversation now. btw: i like the contains better than aggergates. - brad --- Andi Gutmans <[EMAIL PROTECTED]> wrote: >

[PHP-DEV] Re: [Zend Engine 2] PHP in the future

2002-06-06 Thread brad lafountain
--- Zeev Suraski <[EMAIL PROTECTED]> wrote: > At 08:26 PM 6/6/2002, brad lafountain wrote: > > >--- Zeev Suraski <[EMAIL PROTECTED]> wrote: > > > At 07:01 PM 6/6/2002, brad lafountain wrote: > > > >Please don't reply to this email saying Use

[PHP-DEV] Re: [Zend Engine 2] PHP in the future

2002-06-06 Thread brad lafountain
--- Zeev Suraski <[EMAIL PROTECTED]> wrote: > At 07:01 PM 6/6/2002, brad lafountain wrote: > >Please don't reply to this email saying Use Java... Because php is different > >than java and always will be even with these new features. > > Brad, I beg you, there&#

[PHP-DEV] PHP in the future

2002-06-06 Thread brad lafountain
ubiton" will be confusing for some people. Please don't reply to this email saying Use Java... Because php is different than java and always will be even with these new features. PHP can be a soulition for serious application developers with some changes. The code base for it is already

Re: [PHP-DEV] New extension

2002-06-05 Thread brad lafountain
What is RDF? - brad --- Garland foster <[EMAIL PROTECTED]> wrote: > Hi all, > > I just finished a php extension for "repat" an RDF parser in C coded by Jason > Diammond, with this extension we are able > to parse RDF files (in any syntactical representation)

Re: [PHP-DEV] PHP's vision

2002-06-03 Thread brad lafountain
--- [EMAIL PROTECTED] wrote: > On Mon, 3 Jun 2002, brad lafountain wrote: > > > I'm bother by the fact that you guys keep on saying Php isn't Java so > don't > > use lets not use private methods or interfaces. Java is Object Oriented. > Java > > d

Re: [PHP-DEV] PHP's vision

2002-06-03 Thread brad lafountain
age and it should thats what it was built around. But we know that php is way more than that we devlop it. PHP is a strong fast scripting language and should we should start trying to get people to understand this point. - Brad __ Do You Yahoo!?

Re: [PHP-DEV] libxml bundling

2002-05-31 Thread brad lafountain
so widley used everywhere. You want proof that xml is widly used??? Are you serious? What kinda comapany do you work for? We pretty much use xml and xml based techonlogies in 90% of our projects. And talk about objective points? Your points don't seem more objective than mine. - Brad --

[PHP-DEV] libxml bundling

2002-05-31 Thread brad lafountain
build this (relitivly simple). Still have the filesize issue. Do we vote? - Brad __ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com -- PHP Development Mailing List <http://www.php.net/> To un

Re: [PHP-DEV] domxml changes

2002-05-30 Thread brad lafountain
Forgot to attach the diff for people who are interested. - brad --- brad lafountain <[EMAIL PROTECTED]> wrote: > I was talking before about making changes to domxml. The changes involved > allowing users to create nodes without having a domdocument. > > $node = new DomEle

[PHP-DEV] domxml changes

2002-05-30 Thread brad lafountain
nd return it to userland for further processing. It also removes some duplicate code in xmldocfile. It also moves DOMXML_API_VERSION to php_domxml.h. Compiled and tested on windows and linux. There wasn't any objections before when I proposed it so im committing now. - Brad _

Re: [PHP-DEV] bundling libxml2 / bundling locations

2002-05-30 Thread brad lafountain
--- Dan Kalowsky <[EMAIL PROTECTED]> wrote: > On Thu, 30 May 2002, brad lafountain wrote: > > > I personally will take responsiblity for bundling and upgrading it. > > Brad, > > Nothing personal (so please don't take it that way), but in my opinion &

[PHP-DEV] bundling

2002-05-30 Thread brad lafountain
This was brought up before. Instead of bundling libaries in php4/ext/mysql/libmysql they could be put in php4/bundled/libmysql This will help other extensions use bundled libaries. maybe if mod_mysql for session handling is created then it can link against the bundled mysql lib. - Brad

Re: [PHP-DEV] bundling libxml2 / bundling locations

2002-05-30 Thread brad lafountain
--- "Stig S. Bakken" <[EMAIL PROTECTED]> wrote: > On Thu, 2002-05-30 at 18:08, [EMAIL PROTECTED] wrote: > > On Thu, 30 May 2002, brad lafountain wrote: > > > > > The 2M size has alot of stuff that we wouldn't need. Im sure we can get > it > &

Re: [PHP-DEV] bundling libxml2 / bundling locations

2002-05-30 Thread brad lafountain
XML based extensions could use it by default. > > Of course it also depends how big it is. If we can strip it down a lot I'd > > be a +1. If it'd add 1 MB to our .tar.gz I would be against. > > THe normal source distribution is almost 2 MB... The 2M size h

Re: [PHP-DEV] bundling libxml2 / bundling locations

2002-05-29 Thread brad lafountain
orcing it on us). They run one installer and bingo everything "works". People will say "its easy to setup". - Brad --- Markus Fischer <[EMAIL PROTECTED]> wrote: > On Thu, May 30, 2002 at 08:12:27AM +0900, Yasuo Ohgaki wrote : > > Brad Lafountain wrote: >

[PHP-DEV] Fwd: Re: libxml2 - php

2002-05-29 Thread brad lafountain
--- Daniel Veillard <[EMAIL PROTECTED]> wrote: > Date: Wed, 29 May 2002 23:28:11 +0200 > From: Daniel Veillard <[EMAIL PROTECTED]> > To: brad lafountain <[EMAIL PROTECTED]> > CC: [EMAIL PROTECTED] > Subject: Re: libxml2 - php > Reply-to: [EMAIL PROTECTED] >

Re: [PHP-DEV] bundling libxml2 / bundling locations

2002-05-29 Thread brad lafountain
e can obvisouly peridocially upgrade the version that is bundled and you can have an override if you want to use a different version that is installed on a system. As xml gets more and more popular i feel that domxml will be more and more popular. "Build outta the box" - Brad ---

[PHP-DEV] bundling libxml2 / bundling locations

2002-05-29 Thread brad lafountain
stupid sample) and i want to create nice graphics for my stastics i can just write some gd code and link against the bundled libary. - Brad __ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com -- PHP

Re: [PHP-DEV] Re: [Zend Engine 2] Re: [PHP-DEV] [RESENT] [PATCH] Allow constants / expressions to be passed by reference]

2002-05-29 Thread brad lafountain
I have ran into this limitation too or something like foo(); or foo($bar); function foo(&$bar = null) { } --- Andi Gutmans <[EMAIL PROTECTED]> wrote: > I don't see any reason to allow passing non-variables by reference. > It is semantically incorrect. > > Andi > > At 09:40 29/05/2002 +0

  1   2   3   >