码迷,mamicode.com
首页 >  
搜索关键字:php 设计模式 建造者模式    ( 102263个结果
秒懂设计模式之建造者模式
定义 定义虽然基本没有屌用,因为大部分人都看不懂,但是还的说出来。。。 The intent of the Builder design pattern is to separate the construction of a complex object from its representati ...
分类:其他好文   时间:2021-01-12 10:43:10    阅读次数:0
php--05
<?php header("content-type:text/html;charset=utf-8"); // $a = 1; // echo $GLOBALS; // echo $_SERVER; // echo $_ENV; // var_dump($_REQUEST); var_dump($ ...
分类:Web程序   时间:2021-01-12 10:31:53    阅读次数:0
php---06
<?php //使用session //设置session // session_start(); // $_SESSION['a'] = 'admin'; //设置cookie,如果有cookie,说明用户已经登陆或者cookie在过期时间内,可以进行页面跳转,直接跳转到首页 if($_COOKI ...
分类:Web程序   时间:2021-01-12 10:30:28    阅读次数:0
自动生成数据字典工具 china-data-dictionary
china-data-dictionary 刚发现一个生成数据字典比较不错的工具china-data-dictionary https://www.oschina.net/p/china-data-dictionary 使用步骤 修改 index.php 文件里 app_init()将其中定义的如下 ...
分类:其他好文   时间:2021-01-12 10:28:48    阅读次数:0
Head First 设计模式(中文版)PDF电子书
下载链接 321工具站 https://www.321tool.com/book/detail/21 封面 内容简介 《Head First设计模式》(中文版)共有14章,每章都介绍了几个设计模式,完整地涵盖了四人组版本全部23个设计模式。前言先介绍这本书的用法;第1章到第11章陆续介绍的设计模式为 ...
分类:其他好文   时间:2021-01-11 11:21:33    阅读次数:0
PHP-curl传参
当传参data为二维数组,Content-Type: application/x-www-form-urlencoded时, $a = array('a','b','c'); $a['d'] = array('e','f','g'); 传参为二维数组时 $a['d'] = json_encode($ ...
分类:Web程序   时间:2021-01-11 11:10:40    阅读次数:0
http Content type
Content-Type(内容类型),一般是指网页中存在的 Content-Type,用于定义网络文件的类型和网页的编码,决定浏览器将以什么形式、什么编码读取这个文件,这就是经常看到一些 PHP 网页点击的结果却是下载一个文件或一张图片的原因。 Content-Type 标头告诉客户端实际返回的内容 ...
分类:Web程序   时间:2021-01-11 11:08:14    阅读次数:0
Java中sort如何自定义排序
?自定义排序格式 ///对 num [1,n+1)区间进行自定义排序 Arrays.sort(num,1,n+1,new Comparator<Integer>() { public int compare(Integer o1,Integer o2) { return o1-o2;///o1-o2 ...
分类:编程语言   时间:2021-01-11 10:56:15    阅读次数:0
【函数分享】每日PHP函数分享(2021-1-7)
ltrim() 删除字符串开头的空白字符(或其他字符)。 string ltrim ( string $str[, string $character_mask]) 参数描述str 输入的字符串。 character_mask 通过参数 character_mask,你也可以指定想要删除的字符,简单 ...
分类:Web程序   时间:2021-01-11 10:54:31    阅读次数:0
【函数分享】每日PHP函数分享(2021-1-8)
explode() 使用一个字符串分割另一个字符串。 array explode( string $delimiter , string $string [, int $limit ]) 参数描述delimiter 边界上的分隔字符。 string 输入的字符串。 limit 如果设置了 limit ...
分类:Web程序   时间:2021-01-11 10:54:17    阅读次数:0
102263条   上一页 1 ... 50 51 52 53 54 ... 10227 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!