php使用命令行调用Assimp

assimp有python,NET接口代码。但是没有php的,我们可以通过命令行直接调用assimp来操作。
具体方法:
[cc]$old_path = getcwd();
chdir('D:\assimp2json-2.0-win32\Release');
$output = shell_exec('assimp2json monster.blend monster.json');
chdir($old_path);[/cc]