Skip to content

Instantly share code, notes, and snippets.

@gouf
Created April 27, 2016 04:44
Show Gist options
  • Save gouf/e5150118ee8ddddbc84bea4d8c18737f to your computer and use it in GitHub Desktop.
Save gouf/e5150118ee8ddddbc84bea4d8c18737f to your computer and use it in GitHub Desktop.
クラスのインスタンス変数をループ中でセット
<?php
// your code goes here
class MyClass {
public $name;
public $age;
function MyClass(){}
}
$keyValue = array(
'name' => 'Jane',
'age' => 20
);
$m = new Myclass();
foreach($keyValue as $k => $v) {
$m->{$k} = $v;
}
var_dump($m);
// =>
/*
object(MyClass)#1 (2) {
["name"]=>
string(4) "Jane"
["age"]=>
int(20)
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment