[PHP-DEV] Bug #14404: scope notation

2001-12-11 Thread foobardotcom
From: [EMAIL PROTECTED] Operating system: all PHP version: 4.1.0 PHP Bug Type: Feature/Change Request Bug description: scope notation What are callbacks? I have created my callback system, and it is working like that: class Foo { function sum($a, $b) { return $a

[PHP-DEV] Bug #14403: $obj-eval()

2001-12-11 Thread foobardotcom
From: [EMAIL PROTECTED] Operating system: all PHP version: 4.1.0 PHP Bug Type: Feature/Change Request Bug description: $obj-eval() I wish You make it possible: class Foo { function oEval($code) { eval($code); } } $myFoo = new Foo(); $myFoo-oEval('

[PHP-DEV] Bug #14405: strict type control ability

2001-12-11 Thread foobardotcom
From: [EMAIL PROTECTED] Operating system: all PHP version: 4.1.0 PHP Bug Type: Feature/Change Request Bug description: strict type control ability Now: define(E_TYPE, Invalid type of argument); function dbexec($connObject, $query) { if (is_object($connObject)) {

[PHP-DEV] Bug #14406: typeof operator

2001-12-11 Thread foobardotcom
From: [EMAIL PROTECTED] Operating system: all PHP version: 4.1.0 PHP Bug Type: Feature/Change Request Bug description: typeof operator First part of code is the same in every way: class Foo {} $o = new Foo(); Now there is: if (get_class($o) == foo) { // ok }

[PHP-DEV] Bug #14428: range-based regrouping and import ability

2001-12-11 Thread foobardotcom
From: [EMAIL PROTECTED] Operating system: all PHP version: 4.1.0 PHP Bug Type: Feature/Change Request Bug description: range-based regrouping and import ability It would be nice, if some 'future-thinking' group od PHP developers will convert all, for example string

[PHP-DEV] Bug #14393: Function calling filename built-in access

2001-12-11 Thread foobardotcom
From: [EMAIL PROTECTED] Operating system: all PHP version: 4.1.0 PHP Bug Type: Feature/Change Request Bug description: Function calling filename built-in access Create function, that will not constraint specifying __FILE__ who is calling it. function vote($num) {