php
浩然正气,天地长存
无业散人
展开
-
phpstorm2018 wampserver3 xdeug 环境配置流程
下载phpstorm2018 ,wampserver3 ,百度下载 安装phpstorm2018 ,wampserver3 下载chrom 插件,xdebug helper ,百度下载1.xdebug helper 在谷歌浏览器安装插件将下载的文件,修改后缀名为rar,然后解压。打开谷歌浏览器的菜单,扩展程序,安装插件安装成功后的截图2.打开phpStrom新建工...原创 2019-04-26 18:46:47 · 620 阅读 · 0 评论 -
PHP百钱百鸡问题
<html><?php/** * 百钱百鸡问题:公鸡5元一只,母鸡3元一只,小鸡一元3只。 */$count = 0;for ($a = 0; $a <= 100 / 2; ++$a) {//公鸡数量 for ($b = 0; $b <= (100 - $a * 5) / 3; ++$b) {//母鸡数量 $c = (100 -...原创 2019-05-01 11:18:46 · 2473 阅读 · 0 评论 -
PHP打印菱形
<html><?php/** *打印菱形 * */define("N", 10);define("kg", " ");function v1(){ for ($i = 1; $i <= N; ++$i) { for ($j = 1; $j <=N - $i; ++$j) { echo "-";...原创 2019-04-30 23:46:56 · 2754 阅读 · 0 评论 -
PHP实现乘法表
<html><?php/** * Created by PhpStorm. * User: Administrator * Date: 2019/4/30 * Time: 22:49 */for ($i = 1; $i <= 9; ++$i) { for ($j = 1; $j <= $i; ++$j) { echo " ...原创 2019-04-30 22:54:09 · 1711 阅读 · 0 评论 -
PHP打印Ascii码表
<html><?php/** * Created by PhpStorm. * User: Administrator * Date: 2019/4/30 * Time: 18:27 * * 打印Ascii码 * * */echo "<table border='1'>";for ($i = 32; $i <= 126; $i++) ...原创 2019-04-30 18:34:22 · 899 阅读 · 0 评论 -
PHP以表格的形式打印$_SERVER值
test.php<html><head> <script language="php"> echo "php is php."; </script></head><body><?php echo "<table border='1'>"; foreac...原创 2019-04-29 21:19:35 · 1169 阅读 · 0 评论 -
PHP实现的一个简单的计算器
caculator.php<html><head></head><body><?phpif (!empty($_POST)) { $data1 = $_POST["data1"]; $data2 = $_POST["data2"]; $fuhao = $_POST["fuhao"]; $...原创 2019-04-29 14:27:36 · 644 阅读 · 0 评论 -
PHP素数的判断
<html><?phpif (!empty($_POST)) { $num = $_POST["num"]; $count = 0; for ($i = 1; $i <= $num; ++$i) { if ($num % $i == 0) { $count++; } }} el...原创 2019-05-02 17:12:29 · 1449 阅读 · 0 评论 -
PHP错误级别打印
<html><?php// break [n]// continue [n] n指的是循环的层数,从当前开始内到外数。function zhuanhuan($n){ $s = decbin($n); $s = str_pad($s, 16, "0", STR_PAD_LEFT); $s = str_replace("1", ...原创 2019-05-02 16:15:57 · 345 阅读 · 0 评论 -
phpstorm2018 使用内置web服务器debug代码配置
1.chorm浏览器安装xdebug插件2.配置php解释器3.流程演示新建一个test项目php解释器的配置php.ini配置文件增加xdebug配置,采用wamp集成的php环境[xdebug]zend_extension="E:/Windows10/wamp64/bin/php/php5.6.25/zend_ext/php_xdebug-...原创 2019-04-27 23:36:39 · 2361 阅读 · 0 评论 -
PHP错误级别说明
<html><?php/** * * 按系统错误:常量 * 1.E_ERROR 致命错误 1 * 2.E_NOTICE 提示性错误 8 * 3.E_WARNING 警告性错误 2 * * 自定义错误: * E_USER_ERROR 自定义致命错误 * E_USER_WARNING 自定义警告性错误//////////////////////////...原创 2019-05-02 16:19:42 · 1276 阅读 · 0 评论 -
PHP5实现简单的mvc用户管理功能的增删改查实例
利用PHP简单的实现了一下MVC的设计方法:M :数据 V:网页 C:控制输出什么网页开发环境:phpstrom2018 ,php5测试:使用ide内置的server测试功能:实现了用户的增删改查效果图:代码结构:Framework mvc框架代码实现:BaseController.class.php...原创 2019-06-10 08:08:03 · 1798 阅读 · 0 评论