一款php 的mvc 开源框架openbiz
看到同学们有不少在用php开发项目的,或许下面的资料对大家有用吧,用来学习一下也好。
收集的资料相关地址:
cubi demo site:http://dev.openbiz.cn/cubi/user/login
openBiz app cubi:http://docs.google.com/View?id=df5ktjv9_64f9fd88gf
openbiz architecture overview:
http://docs.google.com/View?docid=df5ktjv9_27gchq2nf9
Openbiz Configuration Guide:
http://docs.google.com/View?docid=df5ktjv9_28cn6fr8ht
Openbiz Development Guide
http://docs.google.com/View?docid=df5ktjv9_29fkddmsg8
Openbiz AppBuilder Guide
http://docs.google.com/View?id=df5ktjv9_43hqzk3hdq
Openbiz 2.4 Metadata Generation Wizard Guide
http://www.phpopenbiz.org/jim/meta_wizard
Openbiz Eclipse Plugin User Manual
http://www.phpchina.com/download/handbook/openbiz_manual/designTool.html
Openbiz document
http://www.phpchina.com/download/handbook/openbiz_manual/manual.html
openBiz quick start vidio:
1. openbiz get ready:
http://www.phpopenbiz.org/document/tutorial/get_ready-output/Web/get_ready1.html
2. openbiz appbuilder start:
http://www.phpopenbiz.org/document/tutorial/appbuilder-output/Web/appbuilder1.html
3. openbiz edit metadata
http://www.phpopenbiz.org/document/tutorial/metadata_edit-output/Web/metadata_edit1.html
4. openbiz table join and link
http://www.phpopenbiz.org/document/tutorial/table_join_link-output/Web/table_join_link1.html
5. openbiz data validation
http://www.phpopenbiz.org/document/tutorial/data_validation-output/Web/data_validation1.html
大致的脉络:
openbiz framework为基础
baseapp是一个demo
cubi是在openbiz基础上做成的一个面向企业开发的基础应用
appbuilder是一个图形界面的工具,来实现metadata的图形化生成
最新版本代码的svn:https://bigchef.svn.sourceforge.net/svnroot/bigchef/branches/2.4
相关文档:
//去除 script 脚 本
function delScript($string){
$pregfind = array("/<script.*>.*<\/script>/siU",'/on(mousewheel|mouseover|click|load|onload|submit|focus|blur)="[^"]*"/i');
$pregreplace = array('','');
$string = preg_replace($pregfind, $pregreplace, $string);
return $str ......
最近在折腾 PHP + MYSQL
的编程。了解了一些 PHP SQL 注入攻击
的知识,于是写了这篇文章 http://www.xiaohui.com/weekly/20070314.htm,总结一下经验。在我看来,引发 SQL 注入攻击
的主要原因,是因为以下两点原因:
1. php 配置文件 php.ini 中的 magic_quotes_gpc
选项没有打开,被置为 off
2. 开发 ......
JAVA文件操作总结
File类
File f = new File(path);
path为实际路径,该路径可以是文件,或文件夹,也可以是不存在的。
f.exists() 可以判断该路是否存在。
f.isDirectory() 可以判断是否是文件夹。
f.mkdirs(); 递归创建文件夹
File和输入输出流之间纽带FileInutStream,FileOutputStream
URL url = new URL(strUr ......