06 2013 档案
摘要:if(!defined('PATH'))define('PATH', dirname(dirname(__FILE__)).'/');ini_set ( 'include_path', '.:' . PATH );//.:是linux,.;是windows$file = PATH.'/http/getbaiwu/1';$handle = fopen(PATH.'/http/getbaiwu/1','r');$filecontent = fread($handle,fi
阅读全文
摘要:上面红色方框如果勾选了,Ctrl+H搜索内容不会显示弹出窗口。
阅读全文
摘要:/** * */package decorator2;/** * @author wangjian2 * */public interface InterfaceComponent { public void say();}package decorator2;public class Component implements InterfaceComponent { @Override public void say() { System.out.println("Component.say():原组件的方法!"); }}package decorat...
阅读全文
摘要:1、开发新系统时,如果后期有bi统计的需求,在建表时需要考虑方便以后bi统计的需求。2、boss保险向保险底层提交购买数据时,没有传订单号,这样导致排查问题非常困难。3、松耦合和高聚合的区别是什么啊?
阅读全文