php non-thread-safe和thread-safe区别
non-thread-safe 非 与IIS 搭配环境
thread-safe 与apache 搭配的 环境
先从字面意思上理解,None-Thread Safe就是非线程安全,在执行时不进行线程(thread)安全检查
其实我一直在你身边
non-thread-safe 非 与IIS 搭配环境
thread-safe 与apache 搭配的 环境
先从字面意思上理解,None-Thread Safe就是非线程安全,在执行时不进行线程(thread)安全检查
快捷键
快捷键镜像/映射:Default(Win和Mac中都使用默认快捷键)
MAC中如果没有特殊说明,那么久使用Command替换Ctrl
insert into car_media_article_click(media_id,article_id,click_num) values(3,1770351,1) on duplicate key update click_num = click_num + 1
在wp-config.php 最后一行添加
define(‘FS_METHOD’, “direct”);
static public function sinaShortUrl($url) {
$source = ‘118999789’;
$apiUrl = “http://api.t.sina.com.cn/short_url/shorten.json?source=$source&url_long=”.$url;
$result = json_decode(self::getCurl($apiUrl),true);
$shortUrl = $url;
if(!empty($result) && $result[0][‘type’] == 0 && $result[0][‘url_short’]){
$shortUrl = $result[0][‘url_short’];
}
return $shortUrl;
}