Skip to content

Instantly share code, notes, and snippets.

@cebe
Created April 22, 2015 09:00
Show Gist options
  • Save cebe/c66e989dd8f1b55295c1 to your computer and use it in GitHub Desktop.
Save cebe/c66e989dd8f1b55295c1 to your computer and use it in GitHub Desktop.
yii getter/setter
<?php
class MyClass extends \yii\base\Component
{
private $_value;
public function getValue()
{
if ($this->_value === null) {
$this->_value = /* your sql query here */;
}
return $this->_value;
}
// setter is optional, if not present, this will be a read only property
public function setValue($value)
{
$this->_value = $value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment