FastCoding https://github.com/nicklockwood/FastCoding A faster and more flexible binary file format replacement for NSCoding, Property Lists and JSON 一个用来替换 NSCoding , Property Lists 以及 JSON 方案的,快速灵活性强的二进制文件存储格式. Purpose FastCoder is a high-performan…
<?php class Person{ public $name="xiaoming"; function say(){ echo "i am ".$this->name; } function run($addr){ echo "i am running at ".$addr; } } $per=new Person; //$per->say(); //利用反射实现对象调用方法 //$md=new ReflectionMeth…