/components/com_ajax/ajax.php line 230
$out = implode((array) $results);
As we know, the first attribute of the "implode
" function is a separator for combining. But here the "implode
" function is written without a separator.
true format:
implode(string $separator, array $array) : string
Labels |
Added:
No Code Attached Yet
|
Title |
|
Title |
|
Title |
|
It is valid use of implode(), check the description https://www.php.net/manual/en/function.implode
Alternative signature (not supported with named arguments):
implode(array $array): string
You can close the issue. Thanks.
You can close the issue. Thanks.
You're right, I had a mistake in another one.
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2024-05-14 08:48:47 |
Closed_By | ⇒ | korenevskiy |
Error due to PHP syntax confusion. Where there is no system for the order of function parameters.