hi,
ich habe eine kleine frage an die php gurus.
|
PHP-Quelltext
|
1
|
$x = function3(function2(function1($x)));
|
oder:
|
PHP-Quelltext
|
1
2
3
|
$x = function1($x);
$x = function2($x);
$x = function3($x);
|
?
logisch ist es ja das gleiche, aber gibt es performance- oder andere unterschiede?
lg, max