Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4096170
VisitorReplacing.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
714 B
Referenced Files
None
Subscribers
None
VisitorReplacing.php
View Options
<?php
/**
* @private
*/
class
Less_VisitorReplacing
extends
Less_Visitor
{
public
function
visitArray
(
&
$nodes
)
{
$newNodes
=
[];
foreach
(
$nodes
as
$node
)
{
$evald
=
$this
->
visitObj
(
$node
);
if
(
$evald
)
{
if
(
is_array
(
$evald
)
)
{
self
::
flatten
(
$evald
,
$newNodes
);
}
else
{
$newNodes
[]
=
$evald
;
}
}
}
return
$newNodes
;
}
public
function
flatten
(
$arr
,
&
$out
)
{
foreach
(
$arr
as
$item
)
{
if
(
!
is_array
(
$item
)
)
{
$out
[]
=
$item
;
continue
;
}
foreach
(
$item
as
$nestedItem
)
{
if
(
is_array
(
$nestedItem
)
)
{
self
::
flatten
(
$nestedItem
,
$out
);
}
else
{
$out
[]
=
$nestedItem
;
}
}
}
return
$out
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 14:14 (3 w, 6 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
20/a7/3a1aac459d70429c105bc2c1b513
Default Alt Text
VisitorReplacing.php (714 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment