摘要: <!DOCTYPE html> <html> <body> <?php echo "<h2>PHP is fun!</h2>"; echo "hello world"; echo "I'm about to learn PHP! <br>"; echo "This", " string", " wa 阅读全文
posted @ 2023-07-21 11:49 是程序喵哇 阅读(20) 评论(1) 推荐(0) 编辑
摘要: 在 PHP 中,有两种基本的输出方法:echo 和 print。 PHP echo 和 print 语句 echo 和 print 之间的差异: echo - 能够输出一个以上的字符串 print - 只能输出一个字符串,并始终返回 1 提示:echo 比 print 稍快,因为它不返回任何值。 P 阅读全文
posted @ 2023-07-21 11:48 是程序喵哇 阅读(14) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <body> <?php /* $x=5; function mytest(){ $y=10; echo "<p>测试函数内部的变量 </p>"; echo "变量 x 是: $x"; echo "<br>"; echo "变量 y 是 :$y"; } 阅读全文
posted @ 2023-07-21 11:19 是程序喵哇 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 变量是存储信息的容器: 实例: <!doctype html> <html> <body> <?php $x=5; $y=6; $z=$x+$y; echo $z; ?> </body> </html> 输出结果为: 11 在代数中我们使用字母(比如 x)来保存值(比如 5)。 从上面的表达式 z= 阅读全文
posted @ 2023-07-21 10:44 是程序喵哇 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 基础PHP语法 PHP脚本可放置于文档中的任何位置 PHP脚本以<?php>开头,以 ?>结尾 <?php //此处是PHP代码 ?> PHP文件的默认文件扩展名是".php" PHP文件通常包含HTML标签以及一些PHP脚本代码 实例 <!DOCTYPE html> <html> <body> < 阅读全文
posted @ 2023-07-21 10:32 是程序喵哇 阅读(8) 评论(0) 推荐(0) 编辑
摘要: alert 简单的弹窗,常用于调试时判断代码执行到哪里出问题(类似断点) 例子: alert("11111") this.$aleret this.alert() 方法用于显示带有一个标题,一条指定消息,一个关闭按钮和一个确定按钮的警告框。例子: this.$alert(`hhhhhhh`, 'bi 阅读全文
posted @ 2023-07-06 22:27 是程序喵哇 阅读(406) 评论(0) 推荐(0) 编辑
摘要: onblur 元素失去焦点时触发 onblur 事件会在对象失去焦点时发生。 Onblur 经常用于Javascript验证代码,一般用于表单输入框。 提示:onblur 相反事件为 onfocus事件 。 onchange 该事件在表单元素的内容改变时触发( <input>, <keygen>, 阅读全文
posted @ 2023-07-03 15:26 是程序喵哇 阅读(76) 评论(0) 推荐(0) 编辑
摘要: #appRef { width: 1920px; /* 设计图宽 */ height: 1080px; /* 设计图高 */ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transform-or 阅读全文
posted @ 2023-06-17 22:56 是程序喵哇 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 卸载第一步:打开系统自带的卸载功能,找到node js 进行卸载第二步:删除C:\Users\Administrator\AppData\Roaming文件下的npm、npm-cache或者如果是zip下载的安装包,直接删掉解压文件即可第三步:删掉path系统变量内有关node的,如果是msi安装是 阅读全文
posted @ 2023-05-16 11:45 是程序喵哇 阅读(1635) 评论(0) 推荐(0) 编辑
摘要: 环境搭建 要使用PHP,首先要建立PHP开发环境 WAMP w:window A:Apache M:mysql P:PHP LAMP: L:Linux A:Apache M:mysql P:PHP LNMP: N:nginx XMAPP环境 地址:https://sourceforge.net 游览 阅读全文
posted @ 2023-05-11 11:02 是程序喵哇 阅读(13) 评论(0) 推荐(0) 编辑