|
Posted by Jag on 09/20/06 18:13
Hello there!
At the beginning, I'm apologize
for my weak english skills.
I got a problem with the class
which I include from the other
file. It's hard to me to explain
it clearly, so I just give you
files:
index.php:
<?php
include("someclass.inc.php");
$c=new classA();
$c->SayHallo();
include("another.php");
?>
comeclass.inc.php:
<?php
class classA()
{
function __construct()
{
echo 'Constructing...';
}
function SayHello()
{
echo "Hello, cruel world.";
}
}
?>
another.php:
<?php
First try:
$c->SayHello(); // error :/
Second try:
$c=new classA(); // ALMOST works. It
$c->SayHallo(); // defines second
// instance of the
// class ClassA.
// Unfortunetly, I
// need to work on
// the same instance.
?>
Hope somebody helps me - how to define
class and work with one and the same
instance?
--
best regards
Jag
Navigation:
[Reply to this message]
|