新增
This commit is contained in:
+54
@@ -0,0 +1,54 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user