Tagged Questions
0
votes
3answers
55 views
php self() with current object's constructor
What's the proper way to get new self() to use the current instance's constructor? In other words, when I do:
class Foo{
function create(){
return new self();
}
}
Class Bar extends Foo{
}
...
1
vote
2answers
33 views
Oddity of static:: calling a method that contains $this
In this example I get the fatal error "Fatal error: Using $this when not in object context" as expected
class ctis_parent{
public function objFunc(){
var_dump('Called succes');
}
...
1
vote
2answers
107 views
Static self member in javascript [duplicate]
Possible Duplicate:
Static variables in JavaScript
How can i make a static encapsulation with self members in javascript?
such as in php:
class bar{
static public $foo;
static ...
0
votes
2answers
235 views
PHP: get_called_class() returns unexpected value
Using PHP 5.3+ and having something equal to the following I get the output of 'C' instead of 'B':
class A
{
public static function doSomething()
{
echo get_called_class();
}
}
...
1
vote
4answers
129 views
How to use self and this combined in a static class?
I was wondering how to use the self:: and $this combined in a "static" class?
<?php
class Test
{
static private $inIndex = 0;
static public function getIndexPlusOne()
{
// Can ...
3
votes
2answers
920 views
PHP - self, static or $this in callback function
Is it possible to access classes/objects reffered as self, static and $this in anonymous callbacks in PHP? Just like this:
class Foo {
const BAZ = 5;
public static function bar() {
...
3
votes
3answers
4k views
Java “self” (static) reference
I am looking for a "self" reference to the current class in JAVA in a static context manner like in PHP Scope Resolution Operator?
Solution: Break out of scope? BEWARE, this is compared to a static ...
0
votes
3answers
588 views
PHP: This and Self [duplicate]
Possible Duplicate:
PHP: self vs this
What's the difference between $this and self::
example:
class Object{
public $property;
function doSomething(){
// This
...
1
vote
3answers
174 views
Refering to the class itself from within a class mehod in Objective C
I hope i did not skip this part in the ObjC manual but is it possible to refer to a class from within one of its class methods?
Like in PHP you would use "this" to refer to the current instance, while ...