上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: 1 <?php 2 3 class grabInfo{ 4 public $content; 5 /*Init 初始化 */ 6 public function __construct($url){ 7 $this->ch=curl_init(); 8 curl_setopt($this->ch,CURLOPT_URL,$url); 9 curl_setopt($this->ch, CURLOPT_RETURNTRANSFER,1); 10 curl_setopt($this->ch,CURL_HEA... 阅读全文
posted @ 2013-01-28 14:24 尹少爷 阅读(1780) 评论(0) 推荐(0) 编辑
摘要: category d的字段是加索引的。mysql> select name,category,id from exam group by category;+--------------+----------+----+| name | category | id |+--------------+----------+----+| hcSvgzyCRKj | Q | 1 || XaQrpYuOxkLM | T | 2 |+--------------+----------+----+2 rows in set (0.72 sec)mysql... 阅读全文
posted @ 2013-01-25 12:09 尹少爷 阅读(256) 评论(0) 推荐(0) 编辑
摘要: ubuntu 12.04 安装mongodb,apt-get install mongodbmongodb的创建数据库,我们可以直接use 数据库名称,mongodb会延迟创建该数据库,use 数据库名称db.createCollection()//创建集合db.createCollection(name[,{capped: <boolean>,size: <value>,max <bytes>}])show collections//显示集合db.collection.insert();//db.collection.insert(document)col 阅读全文
posted @ 2013-01-25 10:31 尹少爷 阅读(223) 评论(0) 推荐(0) 编辑
摘要: mysql> desc exam;+----------+------------------+------+-----+-------------------+-----------------------------+| Field | Type | Null | Key | Default | Extra |+----------+------------------+------+-----+-------------------+-----------------------------+|... 阅读全文
posted @ 2013-01-24 10:47 尹少爷 阅读(147) 评论(0) 推荐(0) 编辑
摘要: mysql的权限一直都都是很关心的重点,我知道的也只是很少的一部分,对于每个数据库我习惯创建一个一个用户,该用户只对自己从属的数据库产生进行操作,在一部分的程度上可以保护自己的数据库,比如我有一个数据库叫做dream,create user dream@localhost indentified by 'dream';//创建用户revoke all on *.* from dream@localhost;//删除权限flush privileges;//刷新日志:应用在没有登录数据库的时候方法如下-----,如果登入了数据库,直接写就可以了------------------ 阅读全文
posted @ 2013-01-23 10:09 尹少爷 阅读(826) 评论(0) 推荐(0) 编辑
摘要: mysql> select * into outfile '/home/angelmylove/mysql/student.txt' fields terminated by ',' optionally enclosed by '"' lines terminated by '\n' from student limit 100;ERROR 1 (HY000): Can't create/write to file '/home/angelmylove/mysql/student.txt' 阅读全文
posted @ 2013-01-21 14:54 尹少爷 阅读(899) 评论(0) 推荐(0) 编辑
摘要: 创建用户 create user 用户名 indentified '用户密码';赋予权限: grand 权限 on 数据库名.表名称 to 用户名 indentified by '密码'权限意义ALL [PRIVILEGES]设置除GRANT OPTION之外的所有简单权限ALTER允许使用ALTER TABLEALTER ROUTINE更改或取消已存储的子程序CREATE允许使用CREATE TABLECREATE ROUTINE创建已存储的子程序CREATE TEMPORARY TABLES允许使用CREATE TEMPORARY TABLECREATE U 阅读全文
posted @ 2013-01-21 13:40 尹少爷 阅读(306) 评论(0) 推荐(0) 编辑
摘要: Explain的type显示的是访问类型,是较为重要的一个指标,结果值从好到坏依次是:system > const > eq_ref> ref > fulltext >ref_or_null > index_merge >unique_subquery > index_subquery >range > index > ALL用explain解释你的select语句,完善语句。mysql> explain select artist_id ,type,founded from artist where name=' 阅读全文
posted @ 2013-01-18 15:55 尹少爷 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 只有几个常用的,其他的自己可以在网上查到的。text/htmltext/csstext/javascriptimage/gifimage/jpegimage/pngimage/bmpapplication/pdfapplication/x-tarapplication/zipapplication/octet-stream 阅读全文
posted @ 2013-01-18 14:16 尹少爷 阅读(151) 评论(0) 推荐(0) 编辑
摘要: php:我在这里就说几个我特别常用的,可能我的这些不是很全,请见谅!$handle=fopen($fileName,$mode),是打开文件,参数看名字知道什么意思了,至于模式,我一般不太建议大家以写模式打开,因为会造成清空文件的后果,所以以写的模式打开慎用。fread($handle,$length);fwrite($handle,$string);fclose($handle); 这几个比较简单,在这里就不过多叙述了feof($handle) 判断指针是否到了文件的末尾,这个可以在以行读取文件,判断文件是否读到末尾fileatime($string),filectime($string), 阅读全文
posted @ 2013-01-18 13:35 尹少爷 阅读(233) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页