Re: [PHP-DEV] Function proposal

2005-05-17 Thread Ante Drnasin
Thanx guys for the advices Respect... Ante Marcus Boerger wrote: Hello AnteD, Friday, May 13, 2005, 1:29:36 PM, you wrote: Hi guys... Yes I know that this is a small function and yes I know it can be copy-paste with every new project you do but from the first day I've been using

[PHP-DEV] php suggestion

2005-02-14 Thread Ante Drnasin
Hi again guys I would just like to hear you oppinions about something like this...(please don't shoot me :) ) ex1: function AddToDb(mysql_scape_string($text)) { //enter $text to db } which would be the same as function AddToDb($text) { $text = mysql_escape_string($text); //enter

Re: [PHP-DEV] Autoboxing in php 5.1

2005-02-11 Thread Ante Drnasin
John Coggeshall wrote: To be clear: Although I think this might be implemented as some sort of object I am not interested in making objects out of everything. All I want is this: function foo(Integer $a, Float $b, String $c, Boolean $d) { } and be able to introspect against that... how that

[PHP-DEV] Autoboxing in php 5.1

2005-02-09 Thread Ante Drnasin
I was wondering if anyone can comment on this idea cause I think it would be a great asset to PHP and to OOP in PHP.. example: $b = 4; $a = new Integer(4); if($a == $b) { //bla bla } Other classes would include String(), Integer(), Boolean() ... and so on... -- PHP Internals - PHP Runtime

Re: [PHP-DEV] Autoboxing in php 5.1

2005-02-09 Thread Ante Drnasin
Hi Marcus and thanx for the explanation And I agree that PHP is very loose which is his strong part but exactly because of that I think it would be nice if the end-user can have the ability to work with primitives like they were objects... I didn't want to suggest that PHP should implement