


These resources are basically resources that can be downloaded for free or with only 1 point. After sorting and filtering, they are finally shared with everyone. I hope you like it:
PHP manual (chm) http://download.csdn.net/detail/u011851645/6030287
PHP manual latest version http://download.csdn.net/detail/fly367/5989061
Learn PHP from scratch http://download.csdn.net/detail/qiuyufeng/5972347
Learn PHP in ten days http://download.csdn.net/detail/cyq728/5900421
PHP basic notes http://download.csdn.net/detail/wl1505086/5856729
PHP Advanced Programming http://download.csdn.net/detail/u011570818/5851605
PHP basic tutorial http://download.csdn.net/detail/u010756873/5902255
Getting Started with PHP Programming http://download.csdn.net/detail/u011652094/5902075
Common PHP functions http://download.csdn.net/detail/u010860397/5789761
LAMP website design http://download.csdn.net/detail/u011239077/5668537
WAMP environment construction http://download.csdn.net/detail/u011561974/5845673
PHP Practical Guide http://download.csdn.net/detail/haollibao130/5721737
Commonly used functions in php http://download.csdn.net/detail/wj1527603534/5680011
PHP5 function query manual http://download.csdn.net/detail/wensy0218/5853429
High-performance PHP application development http://download.csdn.net/detail/qiuyufeng/5977995
ThinkPHP Quick Start http://download.csdn.net/detail/ainitainanwo/5783015
Gao Luofeng php details php5 http://download.csdn.net/detail/duguchenmeng/5666793
php viral propagation system http://download.csdn.net/detail/oshizuozuo12/6009711
Commonly used regular expressions in php http://download.csdn.net/detail/ming588588/5814505
PHP5 authoritative programming http://download.csdn.net/detail/zhshyzhangshuyuan/5799437
[PHP Classic Example]. (2nd Edition) http://download.csdn.net/detail/u011581188/5871907
My modified CKeditor editor http://download.csdn.net/detail/sibang/5954427
PRACTICAL PHP AND MYSQL http://download.csdn.net/detail/peterjeng/6010297
LAMP_RedHat6.3_Full process http://download.csdn.net/detail/curitismiss/5786643
PHP 6 and MySQL 6 Bible http://download.csdn.net/detail/houdw2006/5912585
ECshop modified 101 items__Full version http://download.csdn.net/detail/shuns2010/5713385
PHP&MySQLWebDevelopment http://download.csdn.net/detail/u011043843/5838165
Yii quick start tutorial (completely organized) http://download.csdn.net/detail/builtson/5729721
Facebook's core source code written in C language http://download.csdn.net/detail/sibang/5975257
The study notes I compiled when I was learning PHP http://download.csdn.net/detail/sibang/5864827
Install apche server under win7 http://download.csdn.net/detail/wangyuesong2/5790999
Zend_Framework Chinese manual http://download.csdn.net/detail/u011851645/6030321
PHP forges http headers to achieve IP spoofing http://download.csdn.net/detail/cheetah_hya/5782773
PHP entry example Message board addition and deletion check http://download.csdn.net/detail/bactryki28/6019555
PHP Chinese Tutorial for Beginners (CHM) http://download.csdn.net/detail/jianglc2001/5970183
memcached installation program, service program http://download.csdn.net/detail/xiaohei_ning/5979465
Black Knife dezender 5.0 three sets of decrypted kernel versions http://download.csdn.net/detail/ricky1991/5699119
Desktop background made with php function for memory http://download.csdn.net/detail/wangxinxinsj/5678667
Vim 7.3 multi-language official version, known as the artifact in the editor http://download.csdn.net/detail/sibang/3810832
Yii+Framework+v1.1.10.chm Chinese Class Reference Manual http://download.csdn.net/detail/azazd666/5860643
The world's most popular Yii framework quick start tutorial, you can understand it in one day. http://download.csdn.net/detail/qiansen1386/5856149
mysql_chinese.chm (Free download of mysql Chinese version reference manual) http://download.csdn.net/detail/u010596242/5961573
PHP generates various standard one-dimensional barcodes (such as CODE-39;CODE-128;ENA-13) http://download.csdn.net/detail/sibang/6034209

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

转化方法:1、使用“mb_substr($url,stripos($url,"?")+1)”获取url的参数部分;2、使用“parse_str("参数部分",$arr)”将参数解析到变量中,并传入指定数组中,变量名转为键名,变量值转为键值。

在php中,可以利用ltrim()函数来去掉字符串首位的tab空白符,语法为“ltrim(string)”;当只给ltrim()函数传入一个参数,用于规定要检查的字符串时,可删除该字符串开始位置的空白字符(例空格、tab制表符、换行符等)。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
