Peter Kokot
|
f2ccb4a634
|
Fix some minor whitespace issues
- trim trailing whitespace
- phpt closing tag
- final EOL(s) trimmed and synced
|
2018-10-04 07:39:54 +02:00 |
|
Sara Golemon
|
d270470099
|
Add support for is_greater(_or_equal) back
Support still requires a patch to the runtime,
but it's a really small patch now.
|
2017-03-09 14:59:26 -08:00 |
|
Sara Golemon
|
ea41d2bed1
|
PHP7 rewrite
|
2017-03-08 19:23:58 -08:00 |
|
Sara Golemon
|
8d08917aad
|
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)
|
2013-07-17 04:19:43 -07:00 |
|
Sara Golemon
|
63f17c8743
|
Apply patch from Bug#56904 because it can't hurt.
Also add test case for the observed behavior.
|
2013-07-17 03:09:22 -07:00 |
|
Sara Golemon
|
cad8f9d1da
|
Add comparator support: ===, !==, ==, !=, <, <=, >, >=
*Note: > and >= require patch to parser to function
|
2006-02-04 01:33:38 +00:00 |
|
Sara Golemon
|
50fb525c5a
|
Additional tests
|
2006-01-19 03:38:34 +00:00 |
|
Sara Golemon
|
6f460b15a0
|
Add ++ and -- operator support.
|
2006-01-17 20:45:01 +00:00 |
|
Sara Golemon
|
b8a4e1b28c
|
Initial Commit
|
2006-01-12 05:52:15 +00:00 |
|