记录下thinkphp5自定义底层基类.内部类函数使用笔记 大部分笔记来自tp手册. 底层常用代码的封装 在控制器中基类的起着至关重要的作用,整个项目的代码安全,复杂程度,易读性都要看你项目的基类架构的. 比如api中都需要某一个功能函数,我们就可以写在基类里. 贴上一个基类返回错误码的例子: <?php namespace app\member\controller; class Base extends \app\base\controller\Base { static public fu
mongodb的基类 1 <?php 2 3 namespace BI\Service\MongoDB; 4 5 use MongoDB\Driver\BulkWrite; 6 use MongoDB\Driver\Exception\Exception; 7 use MongoDB\Driver\Manager; 8 use MongoDB\Driver\Query; 9 use MongoDB\Driver\WriteConcern; 10 use MongoDB\Driver\WriteR
Specifying the Code to Run on a Thread 上一课 下一课 1.This lesson teaches you to Define a Class that Implements Runnable Implement the run() Method 2.You should also read Processes and Threads 3.Try it out DOWNLOAD THE SAMPLE ThreadSample.zip This lesso
通过反射获得对象的方法 准备工作: 有一个User类如下 package o1; /** * Created by yesiming on 16-11-19. */ public class User { private int id; private String name // 无参构造方法 public User() { System.out.println("new Instance() 1"); } // 有参构造方法 public User(int id, String n