摘要:
尾部 # 将域名写入hosts文件 echo "127.0.0.1 $input_domain" >> /etc/hosts 头部 sed -i "1i\127.0.0.1 $input_domain" /etc/hosts 阅读全文
摘要:
# 判断hosts中有域名 if cat '/etc/hosts' | grep "$input_domain" > /dev/null then echo "域名为$input_domain已存在" domain_flag='' continue fi 阅读全文
摘要:
正则表达式匹配域名 ^(http(s)?:\/\/)?[a-zA-Z0-9][-a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+(:[0-9]{1,5})?$ 在shell中使用 read -p "请输入域名: " input_domain ech 阅读全文
摘要:
mysqli <?php $servername = "localhost"; $username = "root"; $password = "123456"; $dbname = "test"; // 创建连接 $conn = new mysqli($servername, $username, 阅读全文