- 授权协议: Apache
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: https://github.com/sails/cpptempl
软件介绍
cpptempl 是一个 C++ 模板引擎。
语法:
模板流
Variables
{$variable}Loops:
{% for person in people %}Name: {$person.name}{% endfor %}If:
{% if person.name == "xu" %}Full name: xu{% endif %}使用:
cpptempl::auto_data data;
data["age"] = 10;
data["name"] = "xu";
std::string str = "name:{$name}, age:{$age}";
std::string ret = cpptempl::parse(str, data); // ret will be "name:xu, age:10"Flash PHP实用开发技术
Steve Webster著、王黎译 / 王黎 / 清华大学出版社 / 2002-3 / 39.00元
本书将介绍服务器端脚本所提供的各种可能的操作方案,帮助读者掌握设计数据库集成程序和高端应用程序的知识。一起来看看 《Flash PHP实用开发技术》 这本书的介绍吧!
