sql-labs一定要选php5.3.29nts否则会多个\ Hint: Your Input is Filtered with following result: 1\' 解决办法: ...
分类:
数据库 时间:
2020-06-30 20:42:35
阅读次数:
66
` public class MapUtil { public static Map<String, Object> keyToLowerCase(Map<String, Object> orgMap) { Map<String, Object> resultMap = new HashMap<>( ...
分类:
其他好文 时间:
2020-06-30 17:44:42
阅读次数:
243
函数: 1.函数声明 kotlin中的函数使用fun关键字声明: fun double(x: Int): Int { return 2 * x } 2.函数用法 调用函数使用传统的方法: val result = double(2) 调用成员函数使用点表示法: Stream().read() // ...
分类:
其他好文 时间:
2020-06-30 17:16:06
阅读次数:
71
效果图: 重要代码: 1.包裹Json元素块添加属性 overflow: auto;word-break: break-all; 2.固定宽度 <th style="width:800px;"> <p style="overflow: auto;word-break: break-all;"> Js ...
分类:
Web程序 时间:
2020-06-30 16:04:20
阅读次数:
144
procedure SendMouseWheel(destHandle: THandle; goUp: Boolean); var message: TWMMouseWheel; delta: SmallInt; begin if goUp then delta := WHEEL_DELTA els ...
分类:
其他好文 时间:
2020-06-30 14:50:46
阅读次数:
122
1.条件语句的优化 // 根据颜色找出对应的水果 // bad function test(color) { switch (color) { case 'red': return ['apple', 'strawberry']; case 'yellow': return ['banana', ' ...
分类:
Web程序 时间:
2020-06-30 12:35:04
阅读次数:
87
function selectdir: string; //如果取消取返回为空,否则返回选中的路径 var Info: TBrowseInfo; IDList: pItemIDList; Buffer: PChar; begin result := ''; Buffer := StrAlloc(MA ...
首先创建视图模型 using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Shop.ViewModel { public class CreateEditRoleViewModel { [ ...
分类:
其他好文 时间:
2020-06-30 10:52:53
阅读次数:
43
A∩B array_intersect example: $array1 = array("a" => "green", "red", "blue"); $array2 = array("b" => "green", "yellow", "red"); $result = array_interse ...
分类:
Web程序 时间:
2020-06-30 00:46:45
阅读次数:
92
<script> var b = { name : "333", say: function (func){ func(); }, prop:null } function deepClone(param){ let result = Array.isArray(param)?[]:{} if(pa ...
分类:
其他好文 时间:
2020-06-29 18:27:44
阅读次数:
61