找传奇、传世资源到传世资源站!

PHP基础案例教程

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】PHP基础案例教程
【相关图片】from clipboard
【源码结构】.
└── php
    ├── chapter01
    │   ├── Apache配置文件
    │   │   └── conf
    │   │       ├── extra
    │   │       │   └── httpd-vhosts.conf
    │   │       └── httpd.conf
    │   ├── PHP配置文件
    │   │   └── php.ini
    │   ├── curl扩展开启失败解决方法.txt
    │   ├── hosts
    │   ├── htdocs
    │   │   └── test.php
    │   └── 动手实践
    │       ├── 1.php
    │       ├── 2.php
    │       ├── 3.php
    │       ├── 4.php
    │       ├── 5.php
    │       └── hello.php
    ├── chapter02
    │   ├── assign.php
    │   ├── break.php
    │   ├── const.php
    │   ├── continue.php
    │   ├── do_while.php
    │   ├── for.php
    │   ├── force.php
    │   ├── goto.php
    │   ├── heredoc_nowdoc.php
    │   ├── quote.php
    │   ├── var.php
    │   ├── while.php
    │   ├── 动手实践
    │   │   ├── table1.php
    │   │   └── table2.php
    │   └── 示例代码
    │       ├── 2.1.1.php
    │       ├── 2.1.2.php
    │       ├── 2.2.1.php
    │       ├── 2.2.3.php
    │       ├── 2.2.4.php
    │       ├── 2.2.5.php
    │       ├── 2.3.1.php
    │       ├── 2.3.4.php
    │       ├── index.php
    │       └── test.php
    ├── chapter03
    │   ├── call.php
    │   ├── factorial.php
    │   ├── func.php
    │   ├── globals.php
    │   ├── score.php
    │   ├── 动手实践
    │   │   └── calendar.php
    │   └── 示例代码
    │       ├── 3.1.1.php
    │       ├── 3.1.2.php
    │       ├── 3.1.3.php
    │       ├── 3.3.1.php
    │       ├── 3.3.4.php
    │       ├── 3.4.1.php
    │       ├── 3.4.2.php
    │       └── 3.4.3.php
    ├── chapter04
    │   ├── bsearch.php
    │   ├── bubble.php
    │   ├── del.php
    │   ├── insert.php
    │   ├── quick.php
    │   ├── search.php
    │   ├── select.php
    │   ├── 动手实践
    │   │   └── monkey.php
    │   └── 示例代码
    │       ├── 4.2.1.php
    │       ├── 4.2.2.php
    │       ├── 4.2.3.php
    │       ├── 4.2.5.php
    │       ├── 4.5.1.php
    │       ├── 4.5.2.php
    │       ├── 4.5.3.php
    │       ├── 4.5.4.php
    │       ├── 4.6.1.php
    │       ├── 4.6.2.php
    │       └── 4.6.3.php
    ├── chapter05
    │   ├── Xdebug.php
    │   ├── handler.php
    │   ├── report.php
    │   ├── trigger.php
    │   ├── 动手实践
    │   │   ├── a.php
    │   │   ├── b.php
    │   │   ├── c.php
    │   │   ├── d.php
    │   │   ├── script-1.php
    │   │   ├── script-2.php
    │   │   ├── script-3.php
    │   │   ├── script-4.php
    │   │   ├── script-5.php
    │   │   ├── script-6.php
    │   │   ├── script-7.php
    │   │   └── script-8.php
    │   └── 示例代码
    │       ├── 5.1.2.php
    │       ├── 5.2.1.php
    │       ├── 5.2.2.php
    │       ├── 5.2.2.txt
    │       └── 5.3.1
    │           ├── function.php
    │           └── test.php
    ├── chapter06
    │   ├── form.php
    │   └── generate.php
    ├── chapter07
    │   ├── calc.php
    │   ├── login.php
    │   ├── sum.php
    │   ├── xss.php
    │   ├── 动手实践
    │   │   ├── cURL.php
    │   │   └── test.php
    │   └── 示例代码
    │       ├── 7.1.3.php
    │       ├── 7.1.4.php
    │       ├── 7.2.3.php
    │       ├── 7.2.4.php
    │       └── 7.2.5.php
    ├── chapter08
    │   ├── link.php
    │   ├── other.php
    │   ├── prepare.php
    │   ├── query.php
    │   ├── student.php
    │   └── 示例代码
    │       ├── 8.1.3.txt
    │       └── 8.1.4.sql
    ├── chapter09
    │   ├── data.sql
    │   └── www.wish.com
    │       ├── common
    │       │   ├── function.php
    │       │   └── init.php
    │       ├── css
    │       │   └── style.css
    │       ├── index.php
    │       ├── js
    │       │   ├── common.js
    │       │   └── jquery-1.12.4.min.js
    │       ├── save.php
    │       └── view
    │           ├── common
    │           │   ├── add.html
    │           │   ├── edit.html
    │           │   └── password.html
    │           └── index.html
    ├── chapter10
    │   ├── date.php
    │   ├── tel.php
    │   ├── 动手实践
    │   │   └── verify.php
    │   └── 示例代码
    │       ├── 10.2.1.php
    │       ├── 10.2.2.php
    │       ├── 10.2.3.php
    │       ├── 10.3.1.php
    │       ├── 10.3.3.php
    │       ├── 10.4.1.php
    │       ├── 10.4.2.php
    │       └── 10.4.3.php
    ├── chapter11
    │   ├── attr.php
    │   ├── dir.php
    │   ├── file.php
    │   ├── fread.php
    │   ├── iconv.php
    │   ├── image.php
    │   ├── php.jpg
    │   ├── stream.php
    │   ├── test.php
    │   ├── total.php
    │   ├── url.php
    │   ├── write.php
    │   ├── 动手实践
    │   │   ├── download.php
    │   │   ├── multiple.php
    │   │   ├── upload.php
    │   │   └── uploads
    │   └── 示例代码
    │       ├── 11.1.1.php
    │       ├── 11.1.2.php
    │       ├── 11.1.3.php
    │       ├── 11.1.4.php
    │       ├── 11.1.5.php
    │       ├── 11.2.1.php
    │       ├── 123
    │       │   └── 1.txt
    │       ├── 123.txt
    │       └── test.txt
    ├── chapter12
    │   ├── bg.php
    │   ├── cylinder.php
    │   ├── example.php
    │   ├── images
    │   │   ├── 1.jpg
    │   │   ├── 4.jpg
    │   │   ├── ball.png
    │   │   ├── logo.jpg
    │   │   └── tree.jpg
    │   ├── overlay.php
    │   ├── pixelate.php
    │   ├── shape.php
    │   ├── signwall.php
    │   ├── snowflake.php
    │   ├── zoom.php
    │   ├── 动手实践
    │   │   ├── images
    │   │   │   ├── 1.jpg
    │   │   │   └── 6.jpg
    │   │   ├── thumb.php
    │   │   └── water.php
    │   └── 示例代码
    │       └── 12.1.2.php
    ├── chapter13
    │   ├── data.sql
    │   └── www.album.com
    │       ├── common
    │       │   ├── album.php
    │       │   ├── config.php
    │       │   ├── db.php
    │       │   ├── function.php
    │       │   └── init.php
    │       ├── covers
    │       │   └── nopic.png
    │       ├── css
    │       │   └── style.css
    │       ├── index.php
    │       ├── js
    │       │   └── common.js
    │       ├── repair.php
    │       ├── search.php
    │       ├── show.php
    │       ├── thumbs
    │       ├── uploads
    │       └── view
    │           ├── common
    │           │   ├── footer.html
    │           │   └── top.html
    │           ├── index.html
    │           ├── search.html
    │           └── show.html
    ├── chapter14
    │   ├── abstract.php
    │   ├── anonymous.php
    │   ├── clone.php
    │   ├── compare.php
    │   ├── construct.php
    │   ├── extends.php
    │   ├── factory.php
    │   ├── final.php
    │   ├── interface.php
    │   ├── method.php
    │   ├── modifier.php
    │   ├── override.php
    │   ├── property.php
    │   ├── singleton.php
    │   ├── static.php
    │   ├── static_override.php
    │   ├── test.php
    │   ├── traits.php
    │   ├── var.php
    │   ├── 动手实践
    │   │   ├── obj_conn.php
    │   │   └── obj_prepare.php
    │   └── 示例代码
    │       ├── 14.2.2.php
    │       ├── 14.2.3.php
    │       ├── 14.3.1.php
    │       └── 14.5.3.php
    ├── chapter15
    │   ├── SessionDb.php
    │   ├── cookie.php
    │   ├── data.sql
    │   ├── session.php
    │   ├── test.php
    │   ├── 动手实践
    │   │   ├── index.php
    │   │   ├── login.html
    │   │   ├── login.php
    │   │   ├── logout.php
    │   │   └── xss.php
    │   └── 示例代码
    │       ├── 15.2.2.php
    │       └── test.php
    └── chapter16
        ├── 20190426版
        │   ├── data.sql
        │   └── www.fun.com
        │       ├── captcha.php
        │       ├── category.php
        │       ├── common
        │       │   ├── config.php
        │       │   ├── function.php
        │       │   ├── init.php
        │       │   └── library
        │       │       ├── Captcha.php
        │       │       ├── Db.php
        │       │       ├── SessionDb.php
        │       │       ├── Upload.php
        │       │       └── fonts
        │       │           └── captcha.ttf
        │       ├── css
        │       │   └── style.css
        │       ├── favicon.ico
        │       ├── images
        │       │   ├── logo.png
        │       │   ├── noavatar.gif
        │       │   └── sprit1.png
        │       ├── index.php
        │       ├── js
        │       │   ├── common.js
        │       │   └── jquery-1.12.4.min.js
        │       ├── login.php
        │       ├── post.php
        │       ├── register.php
        │       ├── show.php
        │       ├── uploads
        │       │   ├── avatar
        │       │   ├── category
        │       │   │   └── 2017-04
        │       │   │       └── 24
        │       │   │           ├── 5a7f90ed87454fae60d9a76b3c9974a0.png
        │       │   │           ├── c85b86946fb46120f61bf371b91cde90.png
        │       │   │           └── e3fc47679a3ed4d81eed36271e75c5e4.png
        │       │   ├── picture
        │       │   └── temp
        │       ├── user.php
        │       └── view
        │           ├── category.html
        │           ├── common
        │           │   ├── footer.html
        │           │   ├── slide.html
        │           │   └── top.html
        │           ├── index.html
        │           ├── login.html
        │           ├── post.html
        │           ├── register.html
        │           ├── show.html
        │           └── user.html
        └── 20200909版
            ├── data.sql
            ├── 新版代码
            │   ├── captcha.php
            │   ├── category.php
            │   ├── common
            │   │   ├── config.php
            │   │   ├── function.php
            │   │   ├── init.php
            │   │   └── library
            │   │       ├── Captcha.php
            │   │       ├── Db.php
            │   │       ├── SessionDb.php
            │   │       ├── Upload.php
            │   │       └── fonts
            │   │           └── captcha.ttf
            │   ├── css
            │   │   └── style.css
            │   ├── favicon.ico
            │   ├── images
            │   │   ├── logo.png
            │   │   ├── noavatar.gif
            │   │   └── sprit1.png
            │   ├── index.php
            │   ├── js
            │   │   ├── common.js
            │   │   └── jquery-1.12.4.min.js
            │   ├── login.php
            │   ├── post.php
            │   ├── register.php
            │   ├── show.php
            │   ├── uploads
            │   │   ├── avatar
            │   │   ├── category
            │   │   │   └── 2017-04
            │   │   │       └── 24
            │   │   │           ├── 5a7f90ed87454fae60d9a76b3c9974a0.png
            │   │   │           ├── c85b86946fb46120f61bf371b91cde90.png
            │   │   │           └── e3fc47679a3ed4d81eed36271e75c5e4.png
            │   │   ├── picture
            │   │   └── temp
            │   ├── user.php
            │   └── view
            │       ├── category.html
            │       ├── common
            │       │   ├── footer.html
            │       │   ├── slide.html
            │       │   └── top.html
            │       ├── index.html
            │       ├── login.html
            │       ├── post.html
            │       ├── register.html
            │       ├── show.html
            │       └── user.html
            └── 变更记录.docx

98 directories, 307 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复