PHP code example of eclipxe / construct-named-parameters
1. Go to this page and download the library: Download eclipxe/construct-named-parameters library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
eclipxe / construct-named-parameters example snippets
class Foo
{
public function __construct($a, $b, $c, $d) {}
}
$foo = construct_named_parameters(Foo::class, [
'd' => 123,
'b' => 'second',
'a' => 'a argument',
'c' => false,
'xtra' => 'baz',
]);
// this will return the result of:
new Foo('a argument', 'second', false, 123);