PHP code example of php127 / phplibrary

1. Go to this page and download the library: Download php127/phplibrary library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

php127 / phplibrary example snippets



//使用 Composer 的自动加载器



成随机手机号
echo get_rand_phone();

//更直观的print_r
$arr = ['a'=>123];
pr($arr);

//生成无限级目录树
mkdirs('src/library');

//===========================================
//如果在thinkphp或laravel使用框架特有的函数
//tp5 tp3 laravel 请使用简写前缀
//tp5_xxx tp3_xxx la_xxx
//在框架中,我们封装了一些数据库操作函数
//比如 统计表 取列表 取某一条 在开发中有很好的效率
//===========================================

//获取数据表总行数
echo tp5_count('user');

//你可以指定条件
echo tp5_count('user','type=1');
echo tp5_count('user',['type'=>1]);

//获取用户总积分
echo tp5_count('user','type=1','score');

//获取用户前10条
$user = tp5_list('user','',10);
//根据某个条件
$user = tp5_list('user','type=1',10);
//或者积分最高
$user = tp5_list('user','type=1',10,'score desc');

//更多请移步详细函数列表


PHP >= 7.3