Skip to content

Instantly share code, notes, and snippets.

@mgng
Created March 19, 2012 01:23
Show Gist options
  • Save mgng/2089082 to your computer and use it in GitHub Desktop.
Save mgng/2089082 to your computer and use it in GitHub Desktop.
PHPで文字列から関数を呼び出す
<?php
class Unko {
public function morasu( $name ) {
return "{$name}はうんこをもらす";
}
}
$class = 'Unko';
$obj = new $class;
echo $obj->morasu( 'お前' );
// お前はうんこをもらす
<?php
$func = 'sha1';
$value = 'unko';
echo $func($value);
// 73babc4eba0b7946c9926fdb56f96b87a9582b8f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment