[PHP]html标签与实体之间互换

2015-10-23 写技术

PHP中的几个函数,实现实体与标签之间的互换。记录一下,具体用法就不贴了。   htmlspecialchars_decode() 函数把预定义的 HTML 实体转换为字符。 会被解码的 HTML 实体是: & 解码成 & (和号) " 解码成 " (双引号) ' 解码成 ' (单引号) < 解码成 < (小于) > 解码成 > (大于) htmlspecialchars_decode() 函数是 htmlspecialchars() 函数的反函数。 html_entity_decode() 函...

阅读全文>>

标签: php

评论(0) 浏览(1644)

[ubuntu]Set swap file on ubuntu12.04

2015-10-14 写技术

Creating the Swap File # dd if=/dev/zero of=/swapfile bs=1024 count=512000 512000+0 records in 512000+0 records out 524288000 bytes (524 MB) copied, 10.411 s, 50.4 MB/s # mkswap /swapfile Setting up swapspace version 1, size = 511996 KiB no label, UUID=7baa7ca8-c840-4c6e-bd53-038ce4e9a477 ...

阅读全文>>

标签: ubuntu

评论(0) 浏览(1571)

[ubuntu]ubuntu 12.04 install redis

2015-10-9 写技术

1.Install redis $ wget http://download.redis.io/releases/redis-2.8.3.tar.gz   $ tar xzf redis-2.8.3.tar.gz   $ cd redis-2.8.3   $ make   $ sudo make install   #These files are put in /usr/local/bin now.  2.Copy some files important # cp ...

阅读全文>>

标签: nodeJS ubuntu

评论(0) 浏览(1399)

[ubuntu]Set environment

2015-10-9 写技术

1. Edit environment file:     vi /etc/environment     Add something like ":/opt/nodejs/bin" in end. 2. Enable it:     source /etc/environment

阅读全文>>

标签: ubuntu

评论(0) 浏览(1413)

[nodeJS]ubuntu Nodejs和npm的安装

2015-10-8 写技术

一.NodeJs安装 1.下载nodejs源码,这是目前最新版本 http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz 首先确保系统安装来python,gcc,g++,如果没有则安装:  $ sudo apt-get install python  $ sudo apt-get install build-essential  $ sudo apt-get install gcc  $ sudo apt-get install g++  2.解压...

阅读全文>>

标签: nodeJS

评论(2) 浏览(1966)

[MySQL]Failed to read auto-increment value from storage engine Query

2015-9-23 写技术

一条数据插入数据库时报错:Failed to read auto-increment value from storage engine Query. 原因不详。 一种情况是自增字段数值达到最大值,这个我没有办法了。 另一种情况是自增字段还很小,像我的还是0,但也会出现这种问题,所以我不知道什么原因。解决方案是把这个字段的自增属性去掉,然后再重新加上。最好居然就可以了。

阅读全文>>

标签: MySQL

评论(0) 浏览(1652)

[PHP]subscribe in mqtt by php

2015-9-22 写技术

 /* subscribe: subscribes to topics */  function subscribe($topics, $qos = 1){   $i = 0;   $buffer = "";      $id = $this->msgid++;   $buffer .= chr($id >> 8);  $i++;   $buffer .= chr($id % 256);  $i++; ...

阅读全文>>

标签: php

评论(0) 浏览(2125)

[nodeJS]mysql.pool must release connection

2015-9-17 写技术

/* In nodejs. While processing database by pool, don't forget release the connection. */                var pool = app.mysql.pool;             ...

阅读全文>>

标签: nodeJS

评论(0) 浏览(1690)

[angularJS]How to use angular-acl?

2015-9-17 写技术

Angular-acl is a service that allows you to protect/show content based on the current user's assigned role(s). How to use angular-acl :    /* This is app.js */ var app= angular.module('app', ['ngRoute','mm.acl','LocalStorageModule']); app.run(['...

阅读全文>>

标签: angularJS

评论(19) 浏览(37338)

[angularJS]An example about angular-ui-router

2015-9-16 写技术

<html ng-app='myApp'> <script src="js/angular.min.js" ></script> <script src="../framework/angular-ui-router.js"></script> <!-- in index.html --> <body > <section ui-view></section> </body> <script> angular.module('myApp', ['u...

阅读全文>>

标签: angularJS

评论(0) 浏览(1595)

Powered by anycle 湘ICP备15001973号-1