Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
2211003c
Commit
2211003c
authored
Mar 11, 2016
by
Carsten Rose
Browse files
OnArray: toString() handle recursive arrays
parent
6de68a36
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/helper/OnArray.php
View file @
2211003c
...
...
@@ -33,6 +33,10 @@ class OnArray {
$dataString
=
''
;
foreach
(
$dataArray
as
$key
=>
$value
)
{
if
(
is_array
(
$value
))
{
$value
=
self
::
toString
(
$value
);
}
$dataString
.
=
$key
.
$keyValueGlue
.
$encloseValue
.
$value
.
$encloseValue
.
$rowGlue
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment