Static method variable

Static method variable

am 18.09.2008 15:25:35 von Christoph Boget

Perhaps I'm misunderstanding what a static method variable is supposed
to do. I thought the value would be static for an class' instance but
it appears it is static across all instances of the class. Consider:

class StaticTest
{
public function __construct()
{
}

public function test( $newVal )
{
static $retval = '';

if( $retval == '' )
{
$retval = $newVal;
}
echo $retval . '
';
}
}

$one = new StaticTest();
$one->test( 'joe' );
$two = new StaticTest();
$two->test( 'bob' );

Should it be working that way?

thnx,
Chris

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

Re: Static method variable

am 18.09.2008 15:35:10 von Lens Development

Quoting Christoph Boget :

> Perhaps I'm misunderstanding what a static method variable is supposed
> to do. I thought the value would be static for an class' instance but
> it appears it is static across all instances of the class. Consider:
>
> class StaticTest
> {
> public function __construct()
> {
> }
>
> public function test( $newVal )
> {
> static $retval = '';
>
> if( $retval == '' )
> {
> $retval = $newVal;
> }
> echo $retval . '
';
> }
> }
>
> $one = new StaticTest();
> $one->test( 'joe' );
> $two = new StaticTest();
> $two->test( 'bob' );
>
> Should it be working that way?
>
> thnx,
> Chris
>

That's exactly how a static class var functions. It's available cross
all instances of the class.



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

Re: Static method variable

am 18.09.2008 15:37:36 von Carlos Medina

Christoph Boget schrieb:
> Perhaps I'm misunderstanding what a static method variable is supposed
> to do. I thought the value would be static for an class' instance but
> it appears it is static across all instances of the class. Consider:
>
> class StaticTest
> {
> public function __construct()
> {
> }
>
> public function test( $newVal )
> {
> static $retval = '';
>
> if( $retval == '' )
> {
> $retval = $newVal;
> }
> echo $retval . '
';
> }
> }
>
> $one = new StaticTest();
> $one->test( 'joe' );
> $two = new StaticTest();
> $two->test( 'bob' );
>
> Should it be working that way?
>
> thnx,
> Chris
Hi Chris,
please read here. If you have questions after that. Write again please:

http://de3.php.net/manual/en/language.oop5.static.php

Regards

Carlos

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

Re: Static method variable

am 18.09.2008 16:06:33 von Micah Gersten

If you're looking for a persistent variable in one class instance, then
you need a member variable. If you want it persistent across all class
instances, you want a static variable.

Thank you,
Micah Gersten
onShore Networks
Internal Developer
http://www.onshore.com



Christoph Boget wrote:
> Perhaps I'm misunderstanding what a static method variable is supposed
> to do. I thought the value would be static for an class' instance but
> it appears it is static across all instances of the class. Consider:
>
> class StaticTest
> {
> public function __construct()
> {
> }
>
> public function test( $newVal )
> {
> static $retval = '';
>
> if( $retval == '' )
> {
> $retval = $newVal;
> }
> echo $retval . '
';
> }
> }
>
> $one = new StaticTest();
> $one->test( 'joe' );
> $two = new StaticTest();
> $two->test( 'bob' );
>
> Should it be working that way?
>
> thnx,
> Chris
>
>

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

Re: Static method variable

am 18.09.2008 21:01:49 von Jochem Maas

Christoph Boget schreef:
> Perhaps I'm misunderstanding what a static method variable is supposed
> to do. I thought the value would be static for an class' instance but
> it appears it is static across all instances of the class. Consider:
>
> class StaticTest
> {
> public function __construct()
> {
> }
>
> public function test( $newVal )
> {
> static $retval = '';
>
> if( $retval == '' )
> {
> $retval = $newVal;
> }
> echo $retval . '
';
> }
> }
>
> $one = new StaticTest();
> $one->test( 'joe' );
> $two = new StaticTest();
> $two->test( 'bob' );
>
> Should it be working that way?

yes. it's a function variable that retains state. everyone misread your
opst so far ... this has nothing to do with static class scope, although
it does work in the same way.

you can do the exact same thing with a normal function:

function test( $newVal )
{
static $retval;

if(!isset($retval))
$retval = $newVal;

echo $retval . "\n";
}

test('joe');
test('bob');



>
> thnx,
> Chris
>


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