上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 35 下一页
摘要: <script> // 1 八进制 0-7 // var num1 = 010; // console.log(num1); // 8 // var num2 = 012; // console.log(num2); //10 // 2 十六进制 0-9 a-f #ffffff // var num 阅读全文
posted @ 2020-06-03 17:01 EricBlog 阅读(63) 评论(0) 推荐(0) 编辑
摘要: // 查询数据表 show tables // 查询创建表结构 show create table stu1; show create table stu1 \G; describe stu1; 阅读全文
posted @ 2020-05-29 14:47 EricBlog 阅读(95) 评论(0) 推荐(0) 编辑
摘要: // 查看数据表 show databases; // 创建表 create database if not exists stu; // 删除表 drop database stu; // 查看创建表语句 show create database vega; // 修改数据库编码 alter da 阅读全文
posted @ 2020-05-29 14:05 EricBlog 阅读(91) 评论(0) 推荐(0) 编辑
摘要: <?php /* * 验证错误 * 如果没有错 就返回空 * 有错返回错误信息 */ function check($file){ // 1. 验证是否有误 if($file['error'] != 0){ switch($file['error']) { case 1: return "文件大小超 阅读全文
posted @ 2020-05-29 11:16 EricBlog 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-28 13:39 EricBlog 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-28 09:28 EricBlog 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-27 20:10 EricBlog 阅读(101) 评论(0) 推荐(0) 编辑
摘要: // 进制转换 // 十进制转二进制 echo decbin(123),'<br/>'; // 二进制转十进制 echo bindec(1111011),'<br/>'; // 十进制转十六进制 echo dechex(123),'<br/>'; // 十六制作转十进制 echo hexdec('7 阅读全文
posted @ 2020-05-27 17:12 EricBlog 阅读(205) 评论(0) 推荐(0) 编辑
摘要: // 5 预定义常量 // php版本号 // echo PHP_VERSION, '<br/>'; // // php 操作系统 // echo PHP_OS,'<br/>'; // // PHP中整型的最大值 // echo PHP_INT_MAX,"<br/>"; // 6 魔术常量 // 获 阅读全文
posted @ 2020-05-27 15:54 EricBlog 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-27 13:51 EricBlog 阅读(99) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 35 下一页