## 一、获取随机色
~~~
echo '#'.substr(md5(rand()), 0, 6);
~~~
## 二、创建数字字符串为key的数组
~~~
var_dump(['1'=>'hi']);
echo '<br>';
echo '<br>';
$arr = new StdClass(); // array(1) { [1]=> string(2) "hi" }
$key = 1;
$arr->$key = 'hello';
var_dump((array)$arr); // array(1) { ["1"]=> string(5) "hello" }
~~~
## 三、jquery字符php中的htmlspecialchars功能
~~~
var txt = '<b>hello</b>';
console.log($('<div/>').text(txt).html());
~~~
## 四、删除多个表
~~~
drop table `tp_meeting_record`,`tp_week_report`
~~~