Voting

: max(seven, three)?
(Example: nine)

The Note You're Voting On

dev at yopmail dot com
10 years ago
With PHP 5.6, we can use the ... (T_ELLIPSIS) operator

<?php

class Test {
public function
__construct($a, $b) {
echo
$a . ' ' . $b;
}
}

$args = array(12, 34);
new
Test(... $args); // Displays "12 34"

?>

<< Back to user notes page

To Top