thinkphp

thinkphp
獲取版本信息
echo THINK_VERSION;
上傳中文文件名保存亂碼:
$saveName = iconv("UTF-8", "GB2312//IGNORE", $saveName);
修改 think-captcha/src/helper.php中的 captcha_img 函數以期達到模板中只要添加{:captcha_img()}就能夠點擊更換驗證碼
function captcha_img($id = "")
{
return '<img src="' . captcha_src($id) . '" alt="點擊更換" onclick="this.src=\''.captcha_src().'?id=\'+Math.random();" />';
}
系統爲你隨機分配的SocketLog賬號 :
監聽地址: ws://slog.thinkphp.cn:1229
client_id:slog_965b21
注:免費服務,不保證穩定
linux下onethink1.1後臺中文變?的問題
問題描述:
onethink1.1後臺在linux下輸出中文都是問號的問題,一樣的程序,一樣的數據庫,在本地測試也都正常,上傳到linux服務器就不行。
緣由:
服務器安裝PDO時 沒有設置好字符編碼
解決方案:
在 Think\Db\Driver.class.php 中 line 103
$this->linkID[$linkNum] = new PDO( $config['dsn'], $config['username'], $config['password'],$this->options);
後面加
$this->linkID[$linkNum]->query('set names utf8');
thinkphp5安裝驗證碼
tp5.0的版本 注意帶上版本號。 composer require topthink/think-captcha 1.* 
日誌
trace($keyword, 'error');
CORS 跨域的概念與 TP5 的解決方案
在 application->tags.php 文件中添加以下代碼:
// 應用初始化'app_init'     => [
  'app\\api\\behavior\\CORS'],
新建文件 application->api->behavior->CORS.php
代碼以下:
<?php
namespace app\api\behavior;
use think\Response;
class CORS{
    public function appInit(&$params)
    {
        header('Access-Control-Allow-Origin: *');
        header("Access-Control-Allow-Headers: token,Origin, X-Requested-With, Content-Type, Accept");
        header('Access-Control-Allow-Methods: POST,GET');
        if (request()->isOptions()) {
            exit();
        }
    }}
相關文章
相關標籤/搜索