<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>女黑客论坛|网络安全培训|渗透测试培训|web安全培训教程 - PHP</title>
    <link>http://www.nvhack.com/forum.php?mod=forumdisplay&amp;fid=107</link>
    <description>Latest 20 threads of PHP</description>
    <copyright>Copyright(C) 女黑客论坛|网络安全培训|渗透测试培训|web安全培训教程</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Mon, 06 Apr 2026 16:30:40 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.nvhack.com/static/image/common/logo_88_31.gif</url>
      <title>女黑客论坛|网络安全培训|渗透测试培训|web安全培训教程</title>
      <link>http://www.nvhack.com/</link>
    </image>
    <item>
      <title>（八）PHP文件上传+会话控制</title>
      <link>http://www.nvhack.com/forum.php?mod=viewthread&amp;tid=7715</link>
      <description><![CDATA[一，文件上传


表单部分

 
     
     
 

        1) method 必须是 POST 
        2) enctype=\'multipart/form-data\' 这一项必须有 
        3) input 标签中 type=\'file\' 必须有 name 值 

        多文件上传: 
        方式一:
                 
               ...]]></description>
      <category>PHP</category>
      <author>nvhack</author>
      <pubDate>Sat, 08 Nov 2025 07:42:16 +0000</pubDate>
    </item>
    <item>
      <title>（七）PHP错误_时间_文件</title>
      <link>http://www.nvhack.com/forum.php?mod=viewthread&amp;tid=7714</link>
      <description><![CDATA[一，错误处理

错误分为:  

语法错误:      代码不会被执行. 直接报告代码中的错误.

运行时错误:  代码会被执行, 执行到错误的地方, 才报错.

逻辑错误:      代码执行, 不会报错,  但就不是想要的结果.


所有报出来的错误级别, 可以分为:

提示性错误( Notice )     ...]]></description>
      <category>PHP</category>
      <author>nvhack</author>
      <pubDate>Sat, 08 Nov 2025 07:24:23 +0000</pubDate>
    </item>
    <item>
      <title>（六）PHP的正则表达式</title>
      <link>http://www.nvhack.com/forum.php?mod=viewthread&amp;tid=7713</link>
      <description><![CDATA[一，正则表达式的概述

正则表达式,  ( Regular Expression，在代码中常简写为regex、regexp或RE )

用于描述字符排列和匹配模式的一种语法规则

然后, 对匹配到的正好符合规则的内容进行分割、匹配、检索及替换操作
二，正则表达式的格式



            


三，正则表 ...]]></description>
      <category>PHP</category>
      <author>nvhack</author>
      <pubDate>Sat, 08 Nov 2025 07:14:38 +0000</pubDate>
    </item>
    <item>
      <title>（五）PHP数组</title>
      <link>http://www.nvhack.com/forum.php?mod=viewthread&amp;tid=7712</link>
      <description><![CDATA[一，数组的概述


概念:  是一个能在单个变量中存储多个数据值的特殊变量

声明空数组的方式



二，数组的分类

索引数组:    下标是整数

    $arr = [];
    $arr[0] = \'张三\';    ]]></description>
      <category>PHP</category>
      <author>nvhack</author>
<enclosure url="http://www.nvhack.com/data/attachment/forum/
    $arr[1] = \'男\';
    $arr[2] = 18;


关联数组:    下标是字符串

    $brr  ..." length="" type="image/jpeg" />      <pubDate>Sat, 08 Nov 2025 07:08:00 +0000</pubDate>
    </item>
    <item>
      <title>（四）PHP自定义函数的概述</title>
      <link>http://www.nvhack.com/forum.php?mod=viewthread&amp;tid=7711</link>
      <description><![CDATA[一，自定义函数的概述


概念： 完成指定任务的功能代码块

格式：
function  函数名( 参数1, 参数2...)
 {
 ]]></description>
      <category>PHP</category>
      <author>nvhack</author>
<enclosure url="/forum/return 返回值
 }
函数名( 参数1, 参数2...);

作用
给一段代码起一个名字,  以后写名字 ,  代码就会执行.  即调用.   通过名字 , 可以多次 ..." length="" type="image/jpeg" />      <pubDate>Sat, 08 Nov 2025 07:01:45 +0000</pubDate>
    </item>
    <item>
      <title>（三）PHP流程控制概念</title>
      <link>http://www.nvhack.com/forum.php?mod=viewthread&amp;tid=7710</link>
      <description><![CDATA[一，流程控制


流程控制, 就是要了解 代码的执行顺序

根据执行顺序的不同, 形成不同的代码结构:  顺序结构、分支结构、循环结构

顺序结构    默认情况下, 程序代码都是从上往下的一条接着一条执行的. 称为顺序结构


二，分支结构

单分支结构



双分支结构




多 ...]]></description>
      <category>PHP</category>
      <author>nvhack</author>
      <pubDate>Sat, 08 Nov 2025 06:48:53 +0000</pubDate>
    </item>
    <item>
      <title>（二）PHP变量的数据类型</title>
      <link>http://www.nvhack.com/forum.php?mod=viewthread&amp;tid=7709</link>
      <description><![CDATA[一，NULL类型


表示一个变量没有值。NULL类型唯一可能的值就是NULL
 

被认为是NULL的情况:




二，与变量相关的函数


1，unset( 变量名 )
        销毁指定的变量
1.变量的实质是内存空间的一块存储区域.
2.PHP代码结束时,所有变量常量都会自动销毁
3.变量不再使用 ...]]></description>
      <category>PHP</category>
      <author>nvhack</author>
      <pubDate>Sat, 08 Nov 2025 05:14:02 +0000</pubDate>
    </item>
    <item>
      <title>（一）PHP基本语法+数据类型</title>
      <link>http://www.nvhack.com/forum.php?mod=viewthread&amp;tid=7708</link>
      <description><![CDATA[一，LAMP架构

Linux        操作系统 
Apache    web服务器
MySQL     数据库服务器
PHP          超文本预处理器.  服务器端脚本编程语言

二，进程: 程序代码的一次执行
windows下:
        Apache 服务进程    httpd.exe
        MySQL  服务进程    mysqld.exe

三 ...]]></description>
      <category>PHP</category>
      <author>nvhack</author>
      <pubDate>Thu, 06 Nov 2025 03:35:26 +0000</pubDate>
    </item>
  </channel>
</rss>