PHP code example of lkcodes / mycode

1. Go to this page and download the library: Download lkcodes/mycode 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/ */

    

lkcodes / mycode example snippets

`
//使用此方法可打印出所有助手方法 
http:test.php?showhelper
`
//友好的变量输出 
dump($arr);
`
//使用trace
//在config.php中配置开启(默认开启)
Kint\Kint::trace();
//打印变量
Kint\Kint::trace($array);
//若开启助手方法可使用
d($array);
~d($array);等
详情请参考kint官方文档
`
//首先配置好config.php配置项
基本使用:
//基本代码查询/执行
$res = (new \lkcodes\Mycode\lib\DB())->query($sql);

//快捷查询/执行操作 在地址栏输入
http:test.php?query_q=你的查询语句
如:http:test.php?query_q=show databases;

//可视化切换数据库快捷查询 
http:test.php?query_t=1
//会出现可视化视图
`
//导出表格 
$table = new \lkcodes\Mycode\lib\Excel();
$data=[
    ['test1'=>'value1','test2'=>'value2','test3'=>'value3']
];
$param=[
                 'name'=>'风险广告列表', //文件名称
                 'suffix'=>'xlsx',  //文件后缀
                 'top_title'=>['ID','姓名','age'], //首行标题
                 'title'=>'title',
                 'data_title'=>['test1','test2','test3'], 数组对应字段
                 'description'=>'文件描述',
                 'keywords'=>'关键词',
                 'category'=>'分类',
               ];
$table->exportData($data,$param);
//若导出表格字段带有图片 则在数组对应字段中加入前缀 _IMG_
//示例
$param=[
            'name'=>'测试',
            'suffix'=>'xlsx',
            'top_title'=>['图片','姓名'],
            'title'=>'title',
            'data_title'=>['_IMG_file_path','name'],
            'description'=>'文件描述',
            'keywords'=>'关键词',
            'category'=>'分类',
        ];
        $info =[
            ['_IMG_file_path'=>"./static/theme/img/404_icon.png",'name'=>'张三'],
            ['_IMG_file_path'=>"./static/theme/img/404_icon.png",'name'=>'李四'],
        ];
        (new \lkcodes\Mycode\lib\Excel())->exportData($info,$param);die;


//导入表格数据 return array;
$table = new \lkcodes\Mycode\lib\Excel();
$table->importTable('/1.xlsx');