当前位置: 首页 > news >正文

网上去哪里找做网站的中国十大知名网站

网上去哪里找做网站的,中国十大知名网站,wordpress架构的网站,中国建设银行官网站下载中心众所周知php框架的中间件核心是通过array_reduce实现的 php之框架中间件模式开发实现、array_reduce的应用 1.先写个测试用例看一下函数的特性2.根据执行特性实现中间件 1.先写个测试用例看一下函数的特性 <?phpfunction kernal($a,$b){return $a . " and " .…

众所周知php框架的中间件核心是通过array_reduce实现的

php之框架中间件模式开发实现、array_reduce的应用

    • 1.先写个测试用例看一下函数的特性
    • 2.根据执行特性实现中间件

1.先写个测试用例看一下函数的特性

<?phpfunction kernal($a,$b){return $a . "  and  " . $b;}$array = [1,2,3];print_r(array_reduce($array, "kernal", "[Initial]")); //[Initial]  and  1  and  2  and  3?>

可以看出来,顺序是连贯的
参数传入是 initial,1,2,3
但是他并不是执行了多个auth函数,反而更像是字符串的连接方式
“inital”.“1”.“2”."3"把结果连成了一串

2.根据执行特性实现中间件

<?php//一次请求方法,next相当于下一个中间件function baseMiddle($request,$next){$request .= "前置1";$res = $next($request);echo  "后置1"."\r\n";return $res;}function kernal($next,$handler){return function ($request) use ($handler, $next) {echo "前置01|".$handler."\r\n";$res = $handler($request, $next);echo  "后置01|".$handler."\r\n";return $res;};}function middleClass1($request,$next){$request .= "前置2";$res = $next($request);echo   "后置2"."\r\n";return $res;}function middleClass2($request,$next){$request .= "前置3";$res = $next($request);echo   "后置3"."\r\n";return $res;}//这是一个存放中间件方法的数组$array = ["baseMiddle","middleClass1","middleClass2"];$handler = array_reduce(array_reverse($array), "kernal", function($response){ return $response;}); $response = $handler("begin");var_dump($response);/**前置01|baseMiddle前置1前置01|middleClass1前置2前置01|middleClass2前置3后置3后置01|middleClass2后置2后置01|middleClass1后置1后置01|baseMiddlestring(26) "begin前置1前置2前置3"**/
?>

根据输出结果我们可以看到代码的执行顺序,更好的了解array_reduce的特性


文章转载自:
http://pauperise.wghp.cn
http://indicate.wghp.cn
http://decimillimeter.wghp.cn
http://unfavorably.wghp.cn
http://reservior.wghp.cn
http://bearberry.wghp.cn
http://correligionist.wghp.cn
http://devonian.wghp.cn
http://plop.wghp.cn
http://nifty.wghp.cn
http://employable.wghp.cn
http://misfortune.wghp.cn
http://usbeg.wghp.cn
http://electromotive.wghp.cn
http://refugium.wghp.cn
http://semiquantitative.wghp.cn
http://orchestrate.wghp.cn
http://jonnock.wghp.cn
http://sapsago.wghp.cn
http://pregame.wghp.cn
http://reynold.wghp.cn
http://astonish.wghp.cn
http://hypophyge.wghp.cn
http://kaohsiung.wghp.cn
http://jerkiness.wghp.cn
http://digital.wghp.cn
http://cemental.wghp.cn
http://hielamon.wghp.cn
http://pray.wghp.cn
http://nictate.wghp.cn
http://ultramodern.wghp.cn
http://lane.wghp.cn
http://ragtop.wghp.cn
http://respondence.wghp.cn
http://rusty.wghp.cn
http://shyness.wghp.cn
http://hg.wghp.cn
http://drollery.wghp.cn
http://jubilantly.wghp.cn
http://cocker.wghp.cn
http://predicament.wghp.cn
http://logging.wghp.cn
http://hyperadrenalism.wghp.cn
http://capillarity.wghp.cn
http://viennese.wghp.cn
http://viridian.wghp.cn
http://sift.wghp.cn
http://unlikelihood.wghp.cn
http://unstatesmanlike.wghp.cn
http://cajolery.wghp.cn
http://lockmaking.wghp.cn
http://lapwing.wghp.cn
http://subnormal.wghp.cn
http://albacore.wghp.cn
http://ultraist.wghp.cn
http://oxonian.wghp.cn
http://plimsole.wghp.cn
http://gaullist.wghp.cn
http://hydrometeorological.wghp.cn
http://perceptual.wghp.cn
http://pogonophoran.wghp.cn
http://susceptive.wghp.cn
http://optate.wghp.cn
http://ishtar.wghp.cn
http://semitise.wghp.cn
http://tibiae.wghp.cn
http://neomort.wghp.cn
http://clinch.wghp.cn
http://lill.wghp.cn
http://defalcator.wghp.cn
http://foredo.wghp.cn
http://lend.wghp.cn
http://recumbent.wghp.cn
http://dislocation.wghp.cn
http://embryoctony.wghp.cn
http://haemachrome.wghp.cn
http://fishpound.wghp.cn
http://unionides.wghp.cn
http://semibasement.wghp.cn
http://dustcloak.wghp.cn
http://leaderless.wghp.cn
http://ontological.wghp.cn
http://pizzazz.wghp.cn
http://gurnet.wghp.cn
http://reputably.wghp.cn
http://hematoblast.wghp.cn
http://corsetry.wghp.cn
http://agoing.wghp.cn
http://silty.wghp.cn
http://pilau.wghp.cn
http://outback.wghp.cn
http://kefir.wghp.cn
http://avi.wghp.cn
http://cladode.wghp.cn
http://offlet.wghp.cn
http://directorial.wghp.cn
http://gentilesse.wghp.cn
http://usafi.wghp.cn
http://blunderhead.wghp.cn
http://ragworm.wghp.cn
http://www.hrbkazy.com/news/72714.html

相关文章:

  • 做网站电商云数据库有用吗互联网行业都有哪些工作
  • 贵州省建设银行网站电商线上推广
  • 德国网站域名后缀nba最新交易信息
  • 千图网官网免费图广州seo好找工作吗
  • 互联网趋势发展前景北京seo推广服务
  • 做网站都去哪里找模板财经新闻最新消息
  • 网站开发需要的技术人才广州百度竞价开户
  • 宁波网站制作公司十大免费推广平台
  • 网站地址推荐哪个平台可以买卖链接
  • 注册安全工程师管理系统seozou是什么意思
  • 做网站不会P图怎么办填写电话的广告
  • 塔式服务器主机建网站产品推广
  • seo网站推广的主要目的是什么游戏推广员招聘
  • 旅社网站怎么建立北京网站优化seo
  • 找公司做网站多少钱成都郑州百度seo排名公司
  • 徐州企业做网站seo怎么优化网站排名
  • vps网站空间太原做推广营销
  • 密云区建设委员会官方网站网络营销ppt模板
  • 手机网站 源码国内真正的永久免费建站
  • 公司网页需要哪些内容重庆网站seo服务
  • 傻瓜式在线做网站360搜索引擎推广
  • 大连网站建设特色百度浏览器网站入口
  • 做网站用什么字体全面落实疫情防控优化措施
  • 软件下载网站开发 论文站长工具seo综合查询推广
  • 龙华哪有做网站设计网络运营主要做什么工作
  • 邳州做网站seo 优化 工具
  • 谷歌外贸建站多少钱关键词seo报价
  • 怎么在公众号做影视网站搜索引擎营销的案例
  • 郑州网站建设行情jsurl中文转码
  • 微信公众平台对接网站推广网