netcat wrote:
> Named parameters - i think is very good idea.

  Named parameters are commonly implemented using an associated array in
  PHP:

    <?php
    function foo($parameters) {}

    foo(
      array(
        'foo' => 'bar',
        'bar' => 'foo'
      )
    );
    ?>

-- 
Sebastian Bergmann
http://sebastian-bergmann.de/                   http://phpOpenTracker.de/

Das Buch zu PHP 5: http://professionelle-softwareentwicklung-mit-php5.de/

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

Reply via email to