摘要: 1 <html> 2 <head> 3 <title></title> 4 </head> 5 <body> 6 <form> 7 <p>用户名 <input type='text' name='name'></p> 8 <p>密码 <input type='text' name='password'></p> 9 <p><input type='su 阅读全文
posted @ 2019-10-28 14:50 赵志远的博客 阅读(255) 评论(0) 推荐(0)
摘要: 1 exec("UPDATE `ms_goods` SET `nums`=`nums`-1 WHERE id=$id "); 5 echo "miao sha success"; 6 // 队列 链表 list :array 7 // array:先进后出 8 // list: 先进先出 9 ?> 1 connect("127.0.0.1",6379); 6 ... 阅读全文
posted @ 2019-10-28 14:47 赵志远的博客 阅读(150) 评论(0) 推荐(0)
摘要: 1 ############ssh key及 配置信息############# 2 设置Git的user name和email: 3 $ git config --global user.name "memory.qiu" 4 $ git config --global user.email "q 阅读全文
posted @ 2019-10-28 14:46 赵志远的博客 阅读(143) 评论(0) 推荐(0)
摘要: <?php 2 $str = "This is an Apple on eBay"; //定义字符串 3 $len = strlen($str); //字符串长度 4 $sup = []; //空数组,用来记录大写字母的位置 5 //循环字符串 6 for ($i=0;$i<$len;$i++){ 阅读全文
posted @ 2019-10-28 14:30 赵志远的博客 阅读(220) 评论(0) 推荐(0)