The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
45 views

PHP Late Static Binding referencing calling class

I have a static function being called that is giving a strange error. Here is an example of the php code: class foo { public $stat; public function __construct() { $this->stat ...
0
votes
0answers
17 views

What is the best way to get the child class name for use in a parent class [migrated]

I am currently trying to implement a very simple MVC framework as a way of helping me understand how they work. My base controller class has 2 properties, a model and a view. All controllers have a ...
3
votes
1answer
76 views

Which grandson called me?

Say I have this classes class Grandpa { public function call(){ // Well, I want to know who calls me here } } class Father extends Grandpa { } class GrandsonOne extends Father { } ...
2
votes
1answer
23 views

PHP late static binding doesn't work correctly

While coding and using late static binding in PHP I found some strange behaviour. A child object created with static() in its parent class can access the private methods of its parent. Here's an ...
0
votes
3answers
67 views

See if a static property exists in a child class from the parent class (late static binding)?

Code in parent class: foreach(static::$_aReadOnlyDatabaseTables AS $TableName => $aColumns){ // Do something } This works when $_aReadOnlyDatabaseTables is defined in the child class, but ...
2
votes
3answers
34 views

Request for clarification about OOP procedure in PHP

I am trying to write the following code in PHP class A { protected static $comment = "I am A" ; public static function getComment () { return self :: $comment; } } class B extends A { ...
2
votes
2answers
46 views

Prevent late static binding with static variable access from parent function

Given the following class hierarchy: class ParentClass { private static $_test; public function returnTest() { return static::$_test; } } class ChildClass extends ParentClass { ...
0
votes
0answers
19 views

Late static binding - staying within static:: scope

First of all, the code: abstract class Model { protected static $db; public function load($id) { $handler = $this->getDb(); } public function getDb() { return ...
0
votes
1answer
35 views

late static binding | without modifying parent class with `static` keyword

I have following parent and child class. class Parent_class { protected static function method_one() { echo "I am in Parent_class in method_one"; } protected function execute() ...
1
vote
1answer
615 views

Undefined class constant 'self::STRING'

I've been struggling for a few days now with a completely weird bug: Here's the scenario (bear with me): I have one "framework" class, which I'll call F. I have some simple classes that extend F, one ...
0
votes
2answers
51 views

Is this normal?

I don't get how this late static binding works. abstract class A{ final public static function doprint(){ print get_called_class() . '<br>'; } public static function wrapper(){ ...
0
votes
2answers
47 views

Late static binding in PHP, vars are being shared between child classes

Maybe my question has been asked several times, but... I have the following code abstract class ParentClass { protected static $count=0; public static function inc() { ...
3
votes
1answer
51 views

How to solve static:: call when its unavailable?

I have a php 5.2 on my server (cant update) and it drops error on a static::routin() call. How to solve it? Anyway, is there a way, to detect if this type of call is available, so that an intelligent ...
0
votes
3answers
89 views

PHP use late static binding to get calling function?

Is it possible to get information (filename, line, function ...) of the calling function by using late static binding? <?php class Log{ public static function write($msg){ $line = ??; ...
1
vote
2answers
51 views

Extending PHP classes

I have a separate classes for each MySQL table I have in my PHP project. The class would be something like this: class students { public static function find_all() { return ...
1
vote
2answers
74 views

How to find out what class was called previously?

I have a base class with many sub-classes, and a generic function to cache the results of a function. In the cache function, how do I figure out what sub-class was called? class Base { public ...
0
votes
1answer
106 views

PHP Late Static Binding error

I am trying to learn how to use LSB. I am trying to separate my common db methods into class DatabaseObject and extend it to all classes that will be using them. Common db methods being find_by_id(), ...
4
votes
1answer
174 views

late static binding in PHP

I am reading the php manual about the LSB feature, I understand how it works in the static context, but I don't quite understand it in the non-static context. The example in the manual is this: ...
1
vote
1answer
626 views

How to get child class name from parent class

I'm trying to accomplish this without requiring a function on the child class... is this possible? I have a feeling it's not, but I really want to be sure... <?php class A { public static ...
1
vote
2answers
144 views

Practical examples of late static binding in PHP? [closed]

I understand how late static binding works, but I can't seem to come up with a time when I'd use it. The examples on the PHP site are nice, but don't show any kind of realistic usage. I'm just ...
2
votes
1answer
92 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 ...
1
vote
1answer
226 views

syntax error, unexpected T_STATIC

I have this error while trying to use late static bindings. All I can find in google about this error is that people didn't have PHP5.3, but I have version 5.3.6. Could someone help me please ? ...
2
votes
3answers
1k 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
841 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 ...
4
votes
1answer
376 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() { ...
6
votes
1answer
507 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 = ''; /** ...
1
vote
2answers
160 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 ...
2
votes
4answers
551 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 ...
56
votes
3answers
16k 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 ...
5
votes
1answer
736 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 ...
4
votes
1answer
531 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
2answers
622 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
3answers
228 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
308 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 = ...
8
votes
1answer
2k 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 ...
2
votes
4answers
394 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 ...
18
votes
4answers
3k views

What exactly is late-static binding in PHP?

What exactly is late-static binding in PHP?
12
votes
3answers
934 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 ...
3
votes
2answers
1k 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 ...
2
votes
2answers
206 views

Can PHP do a fairly trivial inheritance thing?

I have the following code: abstract class AbstractParent { function __construct($param) { print_r($param); } public static function test() { return new self(1234); } } class SpecificClass extends ...