- 授权协议: GPLv3
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://git.oschina.net/eemcmc/sql.class.php
- 软件文档: http://git.oschina.net/eemcmc/sql.class.php
软件介绍
sql.class.php
做最好的PHP操作类库
-
简单易懂的源代码
-
配置简单,方便易用
-
基于PDO 支持多种数据库,不耦合,不依赖第三方类库
-
功能适中,便于集成
-
支持PHP5.2+
-
安全防sql注入
基于最小接口原则
开发者基本只需要使用Sql 类的2个便捷函数就能操作所有的功能:
Sql::dsn # 得到 数据源对象 Sql::assistant # 得到 Sql辅助类对象
使用手册
class JptestApp
{
/**
* @var SqlDataSource
*/
static $ds = null;
static function sql_monitor($sql, $dsn_id)
{
if (PHP_SAPI === 'cli')
{
fwrite(STDOUT, "[sql]: " . print_r($sql,true) . PHP_EOL);
}
else
{
echo "<BR />[sql]: " . print_r($sql,true);
}
}
}
function jptest_init()
{
$dsn = array(
'type' => 'mysql',
'dbpath' => 'mysql:host=127.0.0.1;port=3306;dbname=jptest',
'login' => 'root',
'password' => '123456',
'initcmd' => array(
"SET NAMES 'utf8'",
),
'attr' => array(
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
PDO::ATTR_PERSISTENT => false,
),
'monitor' => 'JptestApp::sql_monitor',
);
JptestApp::$ds = Sql::ds($dsn);
var_dump(JptestApp::$ds);
$result = null;
// $result = JptestApp::$ds->all('show tables');
//
// $result = Sql::assistant( JptestApp::$ds )->select_row('ixr_citys',array('island'=>array(1,'>=')),'id,name,image');
//
// $result = Sql::assistant( JptestApp::$ds )->select('ixr_citys',array('id'=>array(1,'>=')),'id,name,image');
prety_printr( $result );
}
CSS权威指南(第三版·英文影印版)
[美] Eric A.Meyer / 东南大学出版社 / 2007-06 / 68.00元
著名的CSS专家Eric A.Meyer他招牌式的智慧和无与伦比的经验引领读者探索了CSS的各个部 分,包括属性、标记、特性和实现。此外,他还就现实应用中的一些问题,例如浏览器的支持和设计方针,发表了看法。你所要知道的就是HTML 4.0的知识,这样就可以创建整洁、易于维护的脚本,以与桌面出版系统同样的优雅和控制能力管理网站布局和分页。你将会学到: 精妙地设计文本风格 用户界面、......一起来看看 《CSS权威指南(第三版·英文影印版)》 这本书的介绍吧!
图片转BASE64编码
在线图片转Base64编码工具
XML 在线格式化
在线 XML 格式化压缩工具
