Loading...
杜云龙的小博客
1.先给数据库中的dede_arctype表增加一个字段后台 - 系统 - 系统设置 - SQL命令行工具 ALTER TABLE `dede_arctype` ADD `typebigpic` CHAR( 255 ) NOT NULL DEFAULT '';2.打开 \dede\templets\catalog_add.htm 搜索name="typename"在...
1.文件---首选项---用户代码片段 "Print to console": { "prefix": "css", "body": [ "HTML,body,div,h1,h2,h3,h4,h5,h6,ul,ol,dl,li,dt,dd,p,...
<?php echo time_tran("2019-10-21 10:10:10"); function time_tran($the_time) { $now_time = date("Y-m-d H:i:s", time()); $now_time = strtotime($now_time); $show_time...
header("Content-type: text/html; charset=utf-8"); exec("CHCP 65001");
/** * 模拟post进行url请求 * @param string $url * @param array $post_data */ function request_post($url = '', $post_data = array()) { if (empty($url) || empty($post_data)) ...