Skip to content

Tags: php/pecl-php-operator

Tags

php5

Toggle php5's commit message
Add overloading for direct assignment.

class Foo {
  public $val;

  public function __assign($val) {
    $this->val = $val;
  }
}

$f = new Foo;
$f = 123;
var_dump($f->val); // int(123)

RELEASE_0_3

Toggle RELEASE_0_3's commit message
This commit was manufactured by cvs2svn to create tag '\''RELEASE_0_3…

…'\''.

RELEASE_0_2

Toggle RELEASE_0_2's commit message
This commit was manufactured by cvs2svn to create tag '\''RELEASE_0_2…

…'\''.

RELEASE_1_0_4

Toggle RELEASE_1_0_4's commit message
This commit was manufactured by cvs2svn to create tag '\''RELEASE_1_0…

…_4'\''.