PHP 8.5.0 RC 2 available for testing

Voting

: five minus 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

AltStyle によって変換されたページ (->オリジナル) /