This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
header("content-Type: text/html; charset=UTF-8"); | |
$uptypes=array('image/jpg', //上传文件类型列表 | |
'image/jpeg', | |
'image/png', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem install rdoc bundler |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~ | |
echo 'export LC_ALL=zh_CN.UTF-8' >> .bash_profile | |
echo 'export LANG=zh_CN.UTF-8' >> .bash_profile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem sources --remove http://rubygems.org/ #删除源 | |
gem sources -a http://ruby.taobao.org/ #添加淘宝源 | |
gem sources -l #查看已有的源,确保只有淘宝的源就行了 |