- 授权协议: GPL v3
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://www.jqmphp.com/
- 软件文档: http://www.jqmphp.com/
软件介绍
jqmPhp 是一系列 PHP 类,用来帮助创建使用 jQuery Mobile 的 HTML 文件。
示例:
<?php include 'lib/jqmPhp.php'; $j = new jqmPhp(); $j->addBasicPage('', 'Hello World', 'It\'s works!'); echo $j; ?>
生成的 HTML:
<!DOCTYPE html> <html> <head xmlns="http://www.w3.org/1999/xhtml"> <meta charset="UTF-8"></meta> <link type="text/css" rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css"> </link> <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.min.js"></script> <script type="text/javascript" src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"> </script> <title></title> </head> <body> <div data-role="page"> <div data-role="header" data-position="inline"> <h1>Hello World</h1> </div> <div data-role="content">It's works!</div> </div> </body> </html>
深入Linux内核架构
Wolfgang Mauerer / 郭旭 / 人民邮电出版社 / 201005 / 149.00元
众所周知,Linux操作系统的源代码复杂、文档少,对程序员的要求高,要想看懂这些代码并不是一件容易事。本书结合内核版本2.6.24源代码中最关键的部分,深入讨论Linux内核的概念、结构和实现。具体包括进程管理和调度、虚拟内存、进程间通信、设备驱动程序、虚拟文件系统、网络、时间管理、数据同步等方面的内容。本书引导你阅读内核源代码,熟悉Linux所有的内在工作机理,充分展现Linux系统的魅力。 ......一起来看看 《深入Linux内核架构》 这本书的介绍吧!
