Re: [PHP] OOP and Future of PHP

2001-04-26 Thread Ulf Wendel
Rasmus Lerdorf schrieb: If anyone has any idea, or tricks to hide information in a variables or method in a class, or in other words, make a variable or method a private, I would really like to know. Thanks for any comments. PHP also doesn't have introspection, so there isn't a good

Re: [PHP] OOP and Future of PHP

2001-04-26 Thread Ulf Wendel
Yasuo Ohgaki schrieb: I don't use GDB, but it seems it supports traceback. How about Zend Debugger? Does it support? Anyone? http://dd.cron.ru/dbg/ ? Ulf -- Neu: PEAR Cache Erweiterung OutputCompression http://www.ulf-wendel.de/php/show_source.php?file=out_cache_com http://www.phpdoc.de

Re: [PHP] OOP and Future of PHP

2001-04-26 Thread Yasuo Ohgaki
Yasuo Ohgaki schrieb: I don't use GDB, but it seems it supports traceback. How about Zend Debugger? Does it support? Anyone? http://dd.cron.ru/dbg/ ? Ulf Thanks for correcting my typo, Ulf. GDB = DBG :) Yasuo Ohgaki -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] OOP and Future of PHP

2001-04-26 Thread Steven Haryanto
At 4/26/2001 12:10 PM, Yasuo Ohgaki wrote: What I *really* like to see in PHP is: - NAMESPACE - TRACEBACK INFO - exception (try-except block) - $obj-method()-anotherMethod() - real destructor would be nice, but not extremely important for the time being, due to the nature of

Re: [PHP] OOP and Future of PHP

2001-04-26 Thread Yasuo Ohgaki
At 02:10 PM 4/26/2001 +0900, Yasuo Ohgaki wrote: Steven Haryanto [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... At 4/25/2001 09:02 PM, Reuben D Budiardja wrote: *SNIP* What I *really* like to see in PHP is: - NAMESPACE - TRACEBACK INFO -

Re: [PHP] OOP and Future of PHP

2001-04-26 Thread Yasuo Ohgaki
Sorry about sloppy reading. I misunderstood what he means :( It does not work. -- Yasuo Ohgaki - Original Message - From: Steven Haryanto [EMAIL PROTECTED] To: Yasuo Ohgaki [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 4:22 PM Subject: Re: [PHP] OOP and Future

[PHP] OOP and Future of PHP

2001-04-25 Thread Reuben D Budiardja
The only thing that I feel lack of in PHP is the real Object Oriented stuff, such as information hiding in the object in classes i.e. private and public variables, methods/functions. This in a sene make it really difficult for developer to build an API for other developers that is secure. I

Re: [PHP] OOP and Future of PHP

2001-04-25 Thread Steven Haryanto
At 4/25/2001 09:02 PM, Reuben D Budiardja wrote: The only thing that I feel lack of in PHP is the real Object Oriented stuff, such as information hiding in the object in classes i.e. private and public variables, methods/functions. This in a sene make it really difficult for developer to

Re: [PHP] OOP and Future of PHP

2001-04-25 Thread Yasuo Ohgaki
Steven Haryanto [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... At 4/25/2001 09:02 PM, Reuben D Budiardja wrote: *SNIP* What I *really* like to see in PHP is: - NAMESPACE - TRACEBACK INFO - exception (try-except block) - $obj-method()-anotherMethod() -

[PHP] OOP question regarding class extension

2001-03-19 Thread John Guynn
Can one class extend multiple classes? I'm still playing with OOP functionality and maybe my logic is reversed but I think I need one class to extend many others. John Guynn This email brought to you by RFCs 821 and 1225. -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] OOP in web development

2001-02-14 Thread Nold, Mark
OOP. Mark Nold [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Senior Consultant Change is inevitable, except from vending machines. -Original Message- From: Jeff Warrington [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 4:42 AM To: [EMAIL PROTECTED] Subject: Re:

Re: [PHP] OOP in web development

2001-02-14 Thread Phil Driscoll
I don't want to start an OOP flame thread here, so I'll shut up after this posting - it's just that nobody is speaking up for not using OOP :) The point needs to be made that code reuse, readability and maintainability do not come from whether or not you choose to use OOP techniques. They come

RE: [PHP] OOP in web development

2001-02-14 Thread Mark Maggelet
On Wed, 14 Feb 2001 19:21:20 +1030, Nold, Mark ([EMAIL PROTECTED]) wrote: - --- - Disclaimer: The information contained in this email is intended only for the use of the person(s) to whom it is addressed and

RE: [PHP] OOP in web development

2001-02-14 Thread Nold, Mark
:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 2:16 AM To: Nold, Mark; [EMAIL PROTECTED] Subject: RE: [PHP] OOP in web development On Wed, 14 Feb 2001 19:21:20 +1030, Nold, Mark ([EMAIL PROTECTED]) wrote

[PHP] OOP in web development

2001-02-13 Thread Joe Sheble (Wizaerd)
I've been using PHP for over a year now and have been successfully running three different websites developed with PHP, but I've never done anything with classes or objects. Even when returning data from a mySQL database, I use mysql_fetch_array() instead of mysql_fetch_object(). What am I

Re: [PHP] OOP in web development

2001-02-13 Thread Kath
of it! - Original Message - From: "Joe Sheble (Wizaerd)" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 13, 2001 11:41 AM Subject: [PHP] OOP in web development I've been using PHP for over a year now and have been successfully running three different websites

Re: [PHP] OOP in web development

2001-02-13 Thread Mark Maggelet
On Tue, 13 Feb 2001 15:11:46 -0500, Kath ([EMAIL PROTECTED]) wrote: I find the ability to write something once (say a mysql_connect(); statement) and be able to run it on any page just with $db- connect(); is pretty cool. While that may not seem cool, if you some day change a a PHP statement

Fwd: Re: [PHP] OOP in web development

2001-02-13 Thread Joe Sheble (Wizaerd)
At 03:11 PM 2/13/01 -0500, you wrote: I find the ability to write something once (say a mysql_connect(); statement) and be able to run it on any page just with $db-connect(); is pretty cool. While that may not seem cool, if you some day change a a PHP statement that exists on many

Re: [PHP] OOP in web development

2001-02-13 Thread Jeff Warrington
In article [EMAIL PROTECTED], "Joe Sheble (Wizaerd)" [EMAIL PROTECTED] wrote: depending on the nature of what you are doing, one of the things that i like about using classes is the ability to group functionality under a larger structure, the class. Instead of having a series of disconnected

[PHP] PHP oop in C

2001-01-29 Thread matt . wong
Hello, Does anyone know how to take a PHP class and move it directly into PHP's C code, OR (even better) to move it into C code that compiles in a separate binary object (e.g. myobj.o), and is then linked to the php executable (or httpd executable)? For example, how can I move this code into

<    1   2   3   4