摘要: #把数组转变成字符串 array('Admin','Abc')==>> AdminAbc return implode('', $table_Name); 阅读全文
posted @ 2015-04-01 21:05 麦田守望者~ 阅读(166) 评论(0) 推荐(0) 编辑
摘要: #把数组中第一个字母大写 =>>变成 array('Admin','Abc') $table_Name=array_map('ucfirst', $table_Name); 阅读全文
posted @ 2015-04-01 21:04 麦田守望者~ 阅读(674) 评论(0) 推荐(0) 编辑
摘要: #admin_abc去掉下划线 =>>变成 array('admin','abc') $table_Name=explode('_', $table_Name); 阅读全文
posted @ 2015-04-01 21:03 麦田守望者~ 阅读(452) 评论(0) 推荐(0) 编辑
摘要: #jd_admin_abc 去掉前缀 C('DB_PREFIX')=获取前缀 结果为admin_abc $table_Name=str_replace(C('DB_PREFIX'), '', $table_Name); 阅读全文
posted @ 2015-04-01 21:01 麦田守望者~ 阅读(759) 评论(0) 推荐(0) 编辑