Answers for "php version 5.6"

PHP
0

php version 5.6

pub   2048R/33CFC8B3 2014-01-14 [expires: 2020-01-13]
      Key fingerprint = 6E4F 6AB3 21FD C07F 2C33  2E3A C2BF 0BC4 33CF C8B3
uid                  Ferenc Kovacs <[email protected]>

pub   2048R/90D90EC1 2013-07-18 [expire : 2016-07-17]
      Key fingerprint = 0BD7 8B5F 9750 0D45 0838  F95D FE85 7D9A 90D9 0EC1
uid                  Julien Pauli <[email protected]>
Posted by: Guest on January-04-2022
0

php version 7.4

$parts = ['apple', 'pear'];
$fruits = ['banana', 'orange', ...$parts, 'watermelon'];
var_dump($fruits);
Posted by: Guest on October-20-2021
0

php version 7.4

function test(...$args) { var_dump($args); }
test(1, 2, 3);
Posted by: Guest on October-20-2021
0

php version 7.4

$arr = [...$args];
Posted by: Guest on October-20-2021

Browse Popular Code Answers by Language