vote up 3 vote down star

Hello all,

Here is my situation: I have a PHP base class that looks something like this:

class Table {
  static $table_name = "table";
  public function selectAllSQL(){
    return "SELECT * FROM " . self::$table_name;
  }
}

And a subclass that is like this:

class MyTable extends Table {
  static $table_name = "my_table";
}

Unfortunately, when I do:

MyTable::selectAllSQL()

I get:

"SELECT * FROM table"

instead of my desired result,

"SELECT * FROM my_table"

It looks like this can be accomplished in php 5.3 using late static bindings, but is there any way I can accomplish this behavior in PHP 5.2.x?

flag

3 Answers

vote up 3 vote down

Not really. That's why LSB was added to 5.3. Instantiation is the way to go, in this place, along with a singleton.

link|flag
vote up 1 vote down

Instantiate the class of cause is an option!

<?php
abstract class Table {
	protected $table_name;
	public function selectAllSQL() {
		return 'SELECT * FROM ' . $this->table_name;
	}
}

class MyTable extends Table {
	protected $table_name = 'my_table';
}

$my_table = new MyTable();
echo $my_table->selectAllSQL(); // Will output "SELECT * FROM my_table"

If you have to keep static than reimplementation is the only way to go in PHP < 5.3:

<?php
abstract class Table {
	protected static $table_name = 'table';
	public static function selectAllSQL() {
		return self::selectAllSQLTable(self::$table_name);
	}
	public static function selectAllSQLTable($table) {
		return 'SELECT * FROM ' . $table;
	}
}

class MyTable extends Table {
	protected static $table_name = 'my_table';
	public static function selectAllSQL() {
		return self::selectAllSQLTable(self::$table_name);
	}
}

class MyOtherTable extends Table {
	protected static $table_name = 'my_other_table';
	public static function selectAllSQL() {
		return self::selectAllSQLTable(self::$table_name);
	}
}

echo MyTable::selectAllSQL(); // Will output "SELECT * FROM my_table"
echo MyOtherTable::selectAllSQL(); // Will output "SELECT * FROM my_other_table"
link|flag
vote up 0 vote down

Would it be an option to instantiate the classes?

link|flag
Unfortunately no :( – colonhyphenp May 16 at 18:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.