Skip to content

Instantly share code, notes, and snippets.

@yuya-matsushima
Created May 12, 2011 02:54
Show Gist options
  • Save yuya-matsushima/967852 to your computer and use it in GitHub Desktop.
Save yuya-matsushima/967852 to your computer and use it in GitHub Desktop.
<?php
//config/someclass.php
$config['sample_a'] = 'test';
$config['sample_b'] = 'test2';
<?php
class Someclass
{
public $hoge;
function __construct($params)
{
$this->hoge = $params;
}
function check()
{
return $this->hoge;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment