Created
May 12, 2011 02:54
-
-
Save yuya-matsushima/967852 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//config/someclass.php | |
$config['sample_a'] = 'test'; | |
$config['sample_b'] = 'test2'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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