codecamp

PHP7中Closure :: call使用示例

  • Closure :: call - 绑定并调用闭包
  • Closure :: bind - 使用特定的绑定对象和类范围复制一个闭包

与 PHP5.6 的 bindTo 相比,PHP7 中的 Closure :: call()方法具有更好的性能,该方法被添加为临时将对象范围绑定到闭包并调用它。

较早的 PHP 示例:

<?php
   class A {
      private $x = 1;
   }
   // Define a closure Pre PHP 7 code
   $getValue = function() {
      return $this->x;
   };

   // Bind a clousure
   $value = $getValue->bindTo(new A, 'A'); 

   print($value());
?>

它产生以下浏览器输出:

1

PHP7 及以上版本示例:

<?php
   class A {
      private $x = 1;
   }

   // PHP 7+ code, Define
   $value = function() {
      return $this->x;
   };

   print($value->call(new A));
?>

它产生以下浏览器输出:

1
PHP7定义常量数组和匿名类
在PHP7中如何使用过滤unserialize()函数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }