Tagged Questions
The late-static-binding tag has no wiki summary.
14
votes
1answer
3k views
New self vs. new static
I am trying to convert a PHP 5.3 library to work on PHP 5.2. The main thing standing in my way is the use of late static binding like return new static($options); , if I convert this to return new ...
10
votes
3answers
497 views
Is it possible to overuse late static binding in PHP?
Starting with version 5.3, PHP supports late binding for static methods. While it's an undoubtedly useful feature, there are only several cases where its use is really necessary (e.g. the Active ...
7
votes
3answers
545 views
5
votes
1answer
719 views
Inherit static properties in subclass without redeclaration?
I'm having the same problem as this guy with the application I'm writing right now. The problem is that static properties are not being inherited in subclasses, and so if I use the static:: keyword in ...
4
votes
1answer
157 views
PHPDoc and late (static or dynamic) binding
Most PHP IDEs rely on phpdoc to get hints about the type of an expression. Yet, I use frequently this pattern, which doesn't seem to be covered:
class Control {
private $label = '';
/** ...
3
votes
1answer
105 views
Why doesn't late static binding work with variables in PHP 5.3?
Let's start off with some code:
class Super {
protected static $color;
public static function setColor($color){
self::$color = $color;
}
public static function getColor() {
...
3
votes
1answer
263 views
PHP 5.3: Late static binding doesn't work for properties when defined in parent class while missing in child class
Take a look at this example, and notice the outputs indicated.
<?php
class Mommy
{
protected static $_data = "Mommy Data";
public static function init( $data )
{
...
2
votes
1answer
30 views
Assigning a class variable from subclass without constructor
lI am building a light-weight Model layer for my project's database access.
I would like it to be in the spirit of Ruby on Rails. Instead of instantiating a new Model
object, I want to use a ...
2
votes
4answers
313 views
Why do some languages prefer static method binding rather than dynamic? [closed]
Why is the default decision in C++, C#, and Ada 95 to use static method binding, rather than dynamic method binding.?
Is the gain in implementation speed worth the loss in abstraction and ...
2
votes
4answers
202 views
Forget late static binding, I need late static __FILE__
I'm looking for the get_called_class() equivalent for __FILE__ ... Maybe something like get_included_file()?
I have a set of classes which would like to know what directory they exist in. Something ...
2
votes
2answers
627 views
Is there a way to have PHP subclasses inherit properties (both static and instance)?
If I declare a base class as follows:
abstract class Parent {
protected static $message = "UNTOUCHED";
public static function yeah() {
static::$message = "YEAH";
}
public ...
1
vote
3answers
191 views
How do I call a static child function from parent static function?
How do I call child function from parent static function ?
In php5.3 there is a built in method called get_called_class() to call child method from parent class. But my server is running with php ...
1
vote
2answers
209 views
Parent static function calling static child variable
Here's a simplfied version of the classes I'm dealing with
class A {
static protected function getVal() {
return self::$valB;
}
}
class B extend A {
static protected ...
1
vote
2answers
84 views
php late static binding revieve error expecting T_FUNCTION
I am new to OOP and I have been working on this example but I cannot seem to get rid of this error
Parse error: syntax error, unexpected ';', expecting T_FUNCTION in C:\Program Files (x86)\Apache ...
1
vote
2answers
317 views
Objective-C Late Static Binding
I'm teaching myself Objective-C as a guilty pleasure, if you would. I have a self-proclaimed strong grasp of the Java language, so it's not a terribly difficult transition – it sure is fun though. But ...
0
votes
0answers
247 views
PHP 5.2 Equivalent to Late Static Binding (new static)?
I am trying to make a script that is built for php 5.3 work on a php 5.2 server. The script uses a lot of late static binding like:
return new static($options);
What is the equivalent to this in ...
0
votes
3answers
131 views
Abstract Factories not possible in php < 5.3?
I was working on an abstract class to save on some code for a couple of classes. These classes are all factories that instantiate themselves through different static calls. I could save some code by ...
0
votes
1answer
207 views
get_called_class hack not working with eval-code
I am using a ge_called_class hack for allowing late static binding in php version 5.2 (found here).
I have the following in my code:
# db_record.php
$ac = "ForumThread";
$objects = ...