PHP获取类中所有函数 public function temp(){ $act = A('Demand'); $a_arr = get_class_methods($act); $e_str = '__construct 10年前 3068 浏览
PHP获取当前类名、方法名 __CLASS__ 获取当前类名 __FUNCTION__ 当前函数名(confirm) __METHOD__ 当前方法名 (bankcard::confirm) 10年前 3826 浏览
mysql 排序 分享一个技巧Thhinkphp查询数据库时,按照where in里的顺序排序方法 $id_arr = array(4,1,3,2); $Cond['id'] = array("in", $i 10年前 2996 浏览
js回车监听 // 回车监听事件 $('#bm-sel-modal .bm_name').bind('keypress',function(event){ if(event.keyCode == "13"){ a 10年前 2721 浏览
js 获取当前位置 js获取当前对象坐在的坐标,使用offset属性:var temp = $(this).offset(); var ittop = Math.round(temp.top+5); var 10年前 2862 浏览
CSS透明色 background-image:-ms-linear-gradient(rgba(255,255,255,.50) 0,rgba(255,255,255,.50) 100%) !important; 10年前 2642 浏览
git设置用户名,密码 git config --global user.name "lubin" git config --global user.email [email protected] 10年前 4069 浏览
apache 禁止浏览目录 当我们不想让别人直接访问某些目录时:#Options Indexes FollowSymLinks 改成Options -Indexes FollowSymLinks <Direc 10年前 2707 浏览
vim设置缩进,缩进大小 编辑vim配置文件:vim /etc/vimrc 添加几行: set nu//设置行号 set autoindent set ts=4 //这个是设置tap的大小为4个空格 10年前 3082 浏览
IPMI Could not open device 我们使用ipmi公式,出现以下错误:IPMI Could not open device当提示:[root@localhost ~]# ipmitool&n 10年前 4417 浏览