Quoting Ante Drnasin <[EMAIL PROTECTED]>:
> 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 $text to db
> }
> 
> ex2:
> 
> function removeDigitsFromText($text) {
>       //return the text striped from digits
> }
> 
> function AddTextToDB(removeDigitsFromText($text)) {
>       //add text to db;
> }
> 
> This could be very usefull although I do understand that it could cause 
> problems (references for example) ....

Why could this be usefull? You're putting logic into the parameter list, I can't
think of a reason why you would like to do this.



----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to