加载中
js 模拟提交form表单

var input=""; $.post(ENV.api+"/app/templates/user/orderPlay",{"orderNo":orderNo},function(data){ var body = $(document.body); ...

2018/01/29 14:59
6.3K
php 发送http请求

//发送http请求   function do_post_request($url, $data, $optional_headers = null)   {    $params = array('http' => array(          'method' => 'POST',          'content' => $data         ));...

2017/11/02 14:38
347
java 随机指定范围内且生成不重复的数

/**    * 随机指定范围内N个不重复的数 在初始化的无重复待选数组中随机产生一个数放入结果中,    * 将待选数组被随机到的数,用待选数组(len-1)下标对应的数替换 然后从len-2里随机产生下一个...

2017/10/25 16:40
454
web api国际化

利用资源文件切换语言, 所以先要新建所需要的语言文件 International.en-GB.resx International.resx 所有的资源都将从上面两个资源文件中得到, 比如: var msg = International.UserNotExis...

2017/10/11 15:39
790
php下拉列表框选中传递

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatib...

2017/10/07 21:39
570
vs code 调试php

本人干.net出身, 我想这个宇宙再也没有像vs那样强大的IDE了,我想这个在业界都是没有人质疑的,然现在转战php阵营, 必须会的一种技能就是调试,,,,, 所以写下记录

Deprecated: Methods with the same name as their class will not be constructors in a future version o

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; xxx has a deprecated constructor...

2017/09/28 10:45
1.4K
Namespace declaration statement has to be the very first statement in the script

namespace 前除了 namespace 不能有其他任何代码, 去掉不必要的东西就解决了

Notice: Use of undefined constant xxx

将变量加上引号, 就解决这个问题了, 说白了就是变量的事

PHP乱码

html页面乱码: 在head中加入: <meta Content-Type="text/html" charset="UTF-8"> PHP文件乱码: 加入: header("Content-Type: text/html;charset=utf-8");...

2017/09/27 10:07
605
PHP Notice: undefined index xxx

注意:未定义的索引xxx

2017/09/26 18:25
564
PHP executable not found. Install PHP 7 and add it to your PATH or set the php.executablePath s

{ "php.validate.executablePath": "D:/wamp/bin/php/php7.0.10/php.exe", "php.executablePath": "D:/wamp/bin/php/php7.0.10/php.exe" }...

2017/09/25 17:50
1.9W
asp.net core获取项目文件

public static IConfigurationRoot Configuration { get; set; } public void ConfigureServices(IServiceCollection services) { var builder = new ConfigurationB...

2017/09/25 09:16
2K
c# 安装win服务

有的时候需要把程序整成win服务, 其实也就那么几个命令就够了,

2017/09/20 16:12
228

没有更多内容

加载失败,请刷新页面

返回顶部
顶部