!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/lampp/lib/php/doc/XML_SVG/docs/examples/   drwxr-xr-x
Free 13.65 GB of 61.93 GB (22.05%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     basic.php (2.48 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Basic XML_SVG Example
 *
 * @package XML_SVG
 */

require_once 'XML/SVG.php';

// Create an instance of XML_SVG_Document. All other objects will be
// added to this instance for printing. Set the height and width of
// the viewport.
$svg = new XML_SVG_Document(array('width' => 200,
                                  
'height' => 200));

// Create an instance of XML_SVG_Group. Set the style, transforms for
// child objects.
$g = new XML_SVG_Group(array('style' => 'stroke:black',
                             
'transform' => 'translate(100 100)'));

// Add a parent to the g instance.
$g->addParent($svg);

// The same results can be accomplished by making g a child of the svg.
// $svg->addChild($g);

// Create and animate a circle.
$circle = new XML_SVG_Circle(array('cx' => 0,
                                   
'cy' => 0,
                                   
'r' => 75,
                                   
'style' => 'fill:green;stroke-width:3'));
$circle->addChild(new XML_SVG_Animate(array('attributeName' => 'r',
                                            
'attributeType' => 'XML',
                                            
'from' => 0,
                                            
'to' => 75,
                                            
'dur' => '3s',
                                            
'fill' => 'freeze')));
$circle->addChild(new XML_SVG_Animate(array('attributeName' => 'fill',
                                            
'attributeType' => 'CSS',
                                            
'from' => 'green',
                                            
'to' => 'red',
                                            
'dur' => '3s',
                                            
'fill' => 'freeze')));

// Make the circle a child of g.
$g->addChild($circle);

// Create and animate some text.
$text = new XML_SVG_Text(array('text' => 'SVG chart!',
                               
'x' => 0,
                               
'y' => 0,
                               
'style' => 'font-size:20;text-anchor:middle;'));
$text->addChild(new XML_SVG_Animate(array('attributeName' => 'font-size',
                                          
'attributeType' => 'auto',
                                          
'from' => 0,
                                          
'to' => 20,
                                          
'dur' => '3s',
                                          
'fill' => 'freeze')));

// Make the text a child of g.
$g->addChild($text);

// Send a message to the svg instance to start printing.
$svg->printElement();

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.4886 ]--