Posted by Pro N00b on 02/21/05 13:39
misza wrote:
> Hi,
>
> Is there any way to redeclare class in php? Maybe external tools that
> allow this (pecl)?
>
> Michal
<?php
class myclass {
var $message = 'hello world';
function sayhello($name) {
return 'hello, '.$name;
}
}
$john = new myclass;
echo $john->message; // hello world
echo $john->sayhello('jennifer'); // hello, jennifer
?>
Navigation:
[Reply to this message]
|