Skip to content

Commit

Permalink
删除忽略文件
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexchent committed Jan 16, 2020
1 parent f06ae34 commit 473d6c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php/** * Created by PhpStorm. * User: chentao * Date: 2019/12/5 * Time: 11:02 AM */require "laboratory/php7_4.php";class A { private $x = 1;}// PHP 7 之前版本定义闭包函数代码$getXCB = function() { return $this->x;};// 闭包函数绑定到类 A 上//$getX = $getXCB->bindTo(new A, 'A');//echo $getX();//print(PHP_EOL);echo $getXCB->call(new A, 'A');
<?php/** * Created by PhpStorm. * User: chentao * Date: 2019/12/5 * Time: 11:02 AM */include_once 'autoload.php';use Helper\Tools;
Expand Down

0 comments on commit 473d6c7

Please sign in to comment.