55 lines
1.2 KiB
PHP
Executable File
55 lines
1.2 KiB
PHP
Executable File
<?php
|
|
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2023 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
declare(strict_types=1);
|
|
|
|
namespace think\db;
|
|
|
|
use Stringable;
|
|
|
|
/**
|
|
* SQL Raw.
|
|
*/
|
|
class Raw
|
|
{
|
|
/**
|
|
* 创建一个查询表达式.
|
|
*
|
|
* @param string|Stringable $value
|
|
* @param array $bind
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(protected string|Stringable $value, protected array $bind = [])
|
|
{
|
|
}
|
|
|
|
/**
|
|
* 获取表达式.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getValue(): string
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
/**
|
|
* 获取参数绑定.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getBind(): array
|
|
{
|
|
return $this->bind;
|
|
}
|
|
}
|