總結遇到的小問題

2022-07-22 05:48:06 字數 2100 閱讀 8563

1.字串轉整型

1

for(var i=0;i < data.length;i++)

2.當你不想獲取表單裡的某個內容的時候,可以選擇用這個禁用

1 disabled="disabled"
3.唯讀屬性

1 readonly
4.表單提交加乙個屬性,可以讓你不上傳時不會接受的傳過來的空值

1 enctype="multipart/form-data"
5.php裡在當前的時間上加一年的時間

(1) 

1

$a=time

();2

$date = date('y',$a) + 1 . '-' . date('m-d h:i:s');//

一年後日期

3$time = strtotime($date);

(2)

1

$time=strtotime("+1 year");

(3) 同理,不僅僅可以+year   還可以是天,月日都可以的,如下**:

1

<?php

2echo

strtotime("now"), "\n";

3echo

strtotime("10 september 2000"), "\n";

4echo

strtotime("+1 day"), "\n";

5echo

strtotime("+1 week"), "\n";

6echo

strtotime("+1 week 2 days 4 hours 2 seconds"), "\n";

7echo

strtotime("next thursday"), "\n";

8echo

strtotime("last monday"), "\n";

9 ?>

6.當使用join查詢的時候就不能用聚合查詢,也就是用join 的時候不能有sum的這些統計類的東西

7. ajax改變頁面狀態獲取當前點選狀態的id的方法

js中用

獲取id

8.搜尋的時候輸入漢字或者英文的時候回遇到儲存,這可能是因為不是字串的原因,變成字串就是了

9.刪除陣列當中的某乙個欄位用unset

10.合併兩個結構相同,字段一樣的陣列

11.陣列的下標亂了,比如0 1 3,這就是亂的,怎麼才能寫成0 1 2呢

1

$list_bloc[2]=array_values($list_bloc[2]);//

重組陣列下標

12.陣列轉字串

1

$s2=implode("','",$store_id);

13.在介面中傳遞很多條資料的時候會遇到查詢的資料變少了的情況,這是因為資料太多,解決方法

傳遞中

1

$key=array

(2 'id'=>base64_encode(json_encode($product_id)),在傳遞的過程中用把資料編碼3);

45$style=getproduct_id($key);

接收

1 (json_decode(base64_decode($req['id']),true)接收後需要反編碼格式
這樣就可以用了

14.關閉layer.open 開啟的彈出層並重新整理父頁面

1

parent.window.location.reload();

2var index = parent.layer.getframeindex(window.name); //

獲取視窗索引

3 parent.layer.close(index);

pytorch 遇到的小問題總結

一 transpose 是permute的精簡版本。transpose dim1,dim2 只能將兩個維度進行互換 y y.permute 2,3,1,4 按照2,3,1,4維進行重排列二 對兩個variable進行concat操作,按道理實現方式是c torch.cat a,b dim 0 但提示...

遇到的小問題

今天用vs2005編譯乙個專案的時候出現下面2個錯誤 dibimage.obj error lnk2019 無法解析的外部符號 cuda,該符號在函式 public bool thiscall cdibimage medianfilter char long,long,int,int,int,int...

遇到的小問題

今天用vs2005編譯乙個專案的時候出現下面2個錯誤 dibimage.obj error lnk2019 無法解析的外部符號 cuda,該符號在函式 public bool thiscall cdibimage medianfilter char long,long,int,int,int,int...