1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/pipe_operator/optional_parameters.phpt
Larry Garfield 1c09c0c832 RFC: Pipe operator (#17118)
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>
2025-06-10 09:59:43 +02:00

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)