!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/ccl/vendor/illuminate/database/Query/Grammars/   drwxrwxr-x
Free 13.15 GB of 57.97 GB (22.68%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     SQLiteGrammar.php (5.44 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Database\Query\Grammars;

use 
Illuminate\Database\Query\Builder;

class 
SQLiteGrammar extends Grammar
{
    
/**
     * The components that make up a select clause.
     *
     * @var array
     */
    
protected $selectComponents = [
        
'aggregate',
        
'columns',
        
'from',
        
'joins',
        
'wheres',
        
'groups',
        
'havings',
        
'orders',
        
'limit',
        
'offset',
        
'lock',
    ];

    
/**
     * All of the available clause operators.
     *
     * @var array
     */
    
protected $operators = [
        
'=''<''>''<=''>=''<>''!=',
        
'like''not like''ilike',
        
'&''|''<<''>>',
    ];

    
/**
     * Compile a select query into SQL.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @return string
     */
    
public function compileSelect(Builder $query)
    {
        
$sql parent::compileSelect($query);

        if (
$query->unions) {
            
$sql 'select * from ('.$sql.') '.$this->compileUnions($query);
        }

        return 
$sql;
    }

    
/**
     * Compile a single union statement.
     *
     * @param  array  $union
     * @return string
     */
    
protected function compileUnion(array $union)
    {
        
$conjuction $union['all'] ? ' union all ' ' union ';

        return 
$conjuction.'select * from ('.$union['query']->toSql().')';
    }

    
/**
     * Compile a "where date" clause.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  array  $where
     * @return string
     */
    
protected function whereDate(Builder $query$where)
    {
        return 
$this->dateBasedWhere('%Y-%m-%d'$query$where);
    }

    
/**
     * Compile a "where day" clause.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  array  $where
     * @return string
     */
    
protected function whereDay(Builder $query$where)
    {
        return 
$this->dateBasedWhere('%d'$query$where);
    }

    
/**
     * Compile a "where month" clause.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  array  $where
     * @return string
     */
    
protected function whereMonth(Builder $query$where)
    {
        return 
$this->dateBasedWhere('%m'$query$where);
    }

    
/**
     * Compile a "where year" clause.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  array  $where
     * @return string
     */
    
protected function whereYear(Builder $query$where)
    {
        return 
$this->dateBasedWhere('%Y'$query$where);
    }

    
/**
     * Compile a "where time" clause.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  array  $where
     * @return string
     */
    
protected function whereTime(Builder $query$where)
    {
        return 
$this->dateBasedWhere('%H:%M:%S'$query$where);
    }

    
/**
     * Compile a date based where clause.
     *
     * @param  string  $type
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  array  $where
     * @return string
     */
    
protected function dateBasedWhere($typeBuilder $query$where)
    {
        
$value str_pad($where['value'], 2'0'STR_PAD_LEFT);

        
$value $this->parameter($value);

        return 
"strftime('{$type}', {$this->wrap($where['column'])}{$where['operator']} {$value}";
    }

    
/**
     * Compile an insert statement into SQL.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  array  $values
     * @return string
     */
    
public function compileInsert(Builder $query, array $values)
    {
        
// Essentially we will force every insert to be treated as a batch insert which
        // simply makes creating the SQL easier for us since we can utilize the same
        // basic routine regardless of an amount of records given to us to insert.
        
$table $this->wrapTable($query->from);

        if (! 
is_array(reset($values))) {
            
$values = [$values];
        }

        
// If there is only one record being inserted, we will just use the usual query
        // grammar insert builder because no special syntax is needed for the single
        // row inserts in SQLite. However, if there are multiples, we'll continue.
        
if (count($values) == 1) {
            return empty(
reset($values))
                    ? 
"insert into $table default values"
                    
parent::compileInsert($queryreset($values));
        }

        
$names $this->columnize(array_keys(reset($values)));

        
$columns = [];

        
// SQLite requires us to build the multi-row insert as a listing of select with
        // unions joining them together. So we'll build out this list of columns and
        // then join them all together with select unions to complete the queries.
        
foreach (array_keys(reset($values)) as $column) {
            
$columns[] = '? as '.$this->wrap($column);
        }

        
$columns array_fill(0count($values), implode(', '$columns));

        return 
"insert into $table ($names) select ".implode(' union all select '$columns);
    }

    
/**
     * Compile a truncate table statement into SQL.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @return array
     */
    
public function compileTruncate(Builder $query)
    {
        return [
            
'delete from sqlite_sequence where name = ?' => [$query->from],
            
'delete from '.$this->wrapTable($query->from) => [],
        ];
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.006 ]--