Files
youlegames/codes/agent/game/api/lib/phprs/ezsql/Native.php
2026-03-15 01:27:05 +08:00

28 lines
480 B
PHP

<?php
/**
* $Id: Native.php 131 2015-10-10 02:25:57Z yangmin.cao $
* @author caoym(caoyangmin@gmail.com)
*/
namespace phprs\ezsql;
/**
* 原始sql字符串, 拼接时不进行转义
* @author caoym
*
*/
class Native
{
/**
* @param string $str
*/
function __construct($str) {
$this->str = $str;
}
public function __toString(){
return $this->str;
}
public function get(){
return $this->str;
}
private $str;
}