摘要:
解决文本框样式width:100%超过父容器!!! 转载自:http://blog.csdn.net/xiaochunyong/article/details/7517210 阅读全文
摘要:
public function actionList($class_id = '') { $data = Article::find(); if ($class_id) { $data->andWhere([ 'class_id' => $class_id ]); } $pages = new Pa 阅读全文
摘要:
如题: Yii::$app->user->identity->username 阅读全文
摘要:
/* 设备竖屏时调用该段css代码 */@media all and (orientation : portrait){body{ background-color:blue; }}/* 设备横屏时调用该段css代码 */@media all and (orientation : landscap... 阅读全文
摘要:
1 document.getElementById('params_box').style.display = 'block';修改为1 document.getElementById('params_box').style.display = 'table-row'; 阅读全文
摘要:
/** * @name 名字 * @abstract 申明变量/类/方法 * @access 指明这个变量、类、函数/方法的存取权限 * @author 函数作者的名字和邮箱地址 * @category 组织packages * @copyright 指明版权信息 * @const 指明常量 * @... 阅读全文
摘要:
1 $content = "html代码";2 preg_match_all("/(href|src)=([\"|']?)([^ \"'>]+\.(gif|jpg|jpeg|bmp|png))\\2/i", $content, $img_array);3 print_r($img_array); 阅读全文
摘要:
1、停止mysql服务:打开命令行窗口CMD,Net stop mysql;2、用另外一种方式启动Mysql:在命令行进入到mysql的安装路径下的bin目录下使用mysqld-nt.exe启动:mysqld-nt --skip-grant-tables 注意:此时CMD窗口不能关闭。3、进入Mysql:另外打开一个命入令行窗口,在bin目录下执行mysql,此时无需输入密码即可进入。 >use mysql >update user set password=password("new_pass") where user="root"; &g 阅读全文
摘要:
YII 点滴(更新中)2010-08-02 09:14一、从yii权威指中学到的db组件 'schemaCachingDuration'=>3600, 为什么不起做用? 需要开缓存如何在页面下边显示sql的查询时间 在log组件的routes中加入 array( 'class'=>'CProfileLogRoute', 'levels'=>'error, warning', ) 同时在db组件中加入 'enableProfiling'=>true, 同时在这种情况下,可以用C 阅读全文