Object Function-call handling in PHP5

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a toughy I've been working over for a bit. I was wondering if
there is a way to cause objects to have certain behaviors when builtin
functions are called, or maybe a way of setting, for example, a
"primary" string which is used whenever a function requiring a string
calls it.

IE:

Class myString {
           Public $Value;
           Function __construct($Value) {
                   $this->Value = $Value;
           }
}
$MyString = new myString("Hello World");
Print($MyString); //Wondering if I can get this to return "Hello World"

Printing is probably a weak example because you could just use
Print($MyString->Value); but there are reasons why I would want it
this way.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux