123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace think\db;
- class Expression
- {
-
- protected $value;
-
- public function __construct($value)
- {
- $this->value = $value;
- }
-
- public function getValue()
- {
- return $this->value;
- }
- public function __toString()
- {
- return (string) $this->value;
- }
- }
|