Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/wikimedia/less.php/lib/Less/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/wikimedia/less.php/lib/Less/VisitorReplacing.php
<?php
/**
 * @private
 */
class Less_VisitorReplacing extends Less_Visitor {

	public function visitObj( $node ) {
		$funcName = 'visit' . $node->type;
		if ( isset( $this->_visitFnCache[$funcName] ) ) {

			$visitDeeper = true;
			$node = $this->$funcName( $node, $visitDeeper );

			if ( $node ) {
				if ( $visitDeeper && is_object( $node ) ) {
					$node->accept( $this );
				}

				$funcName .= "Out";
				if ( isset( $this->_visitFnCache[$funcName] ) ) {
					$this->$funcName( $node );
				}
			}

		} else {
			$node->accept( $this );
		}

		return $node;
	}

	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;
	}

}

Spamworldpro Mini