首先需要有安装光盘或原始安装文件(目录中的sources\sxs)以管理员权限运行CMD
执行“dism.exe /online /enable-feature /featurename:NetFX3 /Source:G:\sources\sxs” ,其中/Source: 是Win8安装目中的文件夹
删除节点:
$root = $xmldoc->getElementByTagName("班级")->item(0);
$stus = $xmldoc->getElementByTagName("学生");
$stu1 = $stus->item(2);
$root->removeChild($stu1);
$xmldoc->save("xxx.xml");
通过已取得的节点向上取得父节点进行删除
$stu1->parentNode->removeChild($stu1);
更新节点:
$xmldoc = new DOMDocment();
$xmldoc->load("xxx.xml");
$stus = $xmldoc->getElementByTagName("学生");
$stu1 = $stus->item(0);
$stu1_age = $stu1->getElementsByTagName("年龄")->item(0);
$stu1_age->nodeValue += 10;
$xmldoc->save("xxx.xml");
查看取得的对象的类型
$xml_node->nodyType;
添加属性节点
创建属性节点 setAttribute
$stu_node->setAtrribute("性别","男");
删除属性
removeAttribute
2015-3-14
decision
actually
organize
railroad
baked potato
spray 喷射
overnight
fever
worn
enrollment
board
2015-3-16
conference 会议
literate 有读写能力的
portion 部分
engine 引擎
insist 坚持
brochure 小册子
addicted 沉迷
perceptive 敏感的
etiquette 礼节
2015-3-17
assertive 过份自信
appetite 胃口
tennis court 网球场
butcher 屠夫
schedule 时间表
the statue of liberty 自由女神像
dinosaur 恐龙
2015-3-18
muscle 肌肉
bother 打扰
kidnap 绑架
mileage 里程
filled 供应
fascinating 吸引人的,迷人的
order 点
breast stroke 蛙泳
tie 平局
contest 比赛
wondering 觉得奇怪的
2015-3-21
horrible 很糟的
balance 结存
flight 班机
modem 调制解调器
throw 扔
wait on 服务
friendly 友好
2015-3-22
butter 黄油
french fries 炸薯条
brochure 小册子
butterfly 蝶泳
hold 占据
hungry 饥饿
handle 把手
quarter 四分之一
library 图书馆
breath-taking 惊人的
prescription 处方
VGA公头与母头上有数字编号,了解每个针角的对应编号后,再进行焊接。
电烙铁进行焊接时,先将电烙铁加热后,粘一些松香在头上,然后在电烙铁头上均匀的涂上一层焊锡,接着将要焊接的线放在结块的松香上,然后用电烙铁使松香粘到需要焊接的线上,注意因电焊铁上之前有涂上一层焊锡所以在电烙铁与松香、线接触的过程中,线的上面会粘上焊锡,这样可以使接下来将线与VGA头的针脚的焊接变得简单。
VGA针角所对应的线的颜色如下:
1.红粗线芯
2.绿粗线芯
3.蓝粗线芯
4.空
5.空
6.红屏蔽
7.绿屏蔽
8.蓝屏蔽
9.空
10.黑细线
11.棕细线
12.白细线
13.桔黄细线
14.黄细线
15.外屏蔽(就是最外面的一层网)
[该文章已设置加密,请点击标题输入密码访问]
<IfModule deflate_module>
SetOutputFilter DEFLATE
# Don’t compress images and other
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI .(?:pdf|doc)$ no-gzip dont-vary
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css
AddOutputFilterByType DEFLATE application/x-javascript
</IfModule>