18 lines
271 B
PHP
18 lines
271 B
PHP
<?php
|
|
|
|
class DojoString
|
|
{
|
|
private $object = 'DojoString';
|
|
|
|
private $value = '';
|
|
|
|
public function __construct($string){
|
|
$this->value = preg_replace('%(^[\'"]|["\']$)%', '', $string);
|
|
}
|
|
|
|
public function getValue(){
|
|
return $this->value;
|
|
}
|
|
}
|
|
|
|
?>
|