# mz_tp **Repository Path**: mz_packagist/mz_tp ## Basic Information - **Project Name**: mz_tp - **Description**: MZ thinkphp6 composer library - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-19 - **Last Updated**: 2024-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mz_tp thinkphp6 composer library ## 目录结构 ~~~ src curd 基于thinkphp Db 基类CURD封装 ext 扩展类:方法 ~~~ ## 使用 ``` // Log use mztp\ext\MLog; $error['exception'] = "测试composer MLog"; MLog::db($error, 'error'); // CURD use mztp\curd\CurdDb; $db = new CurdDb(); $row = $db->getOne('tabname',1); ```