mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Co-authored-by: Gina Peter Banyard <girgias@php.net> Co-authored-by: Arnaud Le Blanc <arnaud.lb@gmail.com> Co-authored-by: Tim Düsterhus <tim@tideways-gmbh.com>
16 lines
197 B
PHP
16 lines
197 B
PHP
--TEST--
|
|
Pipe operator accepts optional-parameter functions
|
|
--FILE--
|
|
<?php
|
|
|
|
function _test(int $a, int $b = 3) {
|
|
return $a + $b;
|
|
}
|
|
|
|
$res1 = 5 |> '_test';
|
|
|
|
var_dump($res1);
|
|
?>
|
|
--EXPECT--
|
|
int(8)
|