语言笔记 第26页
PHP 正则修改config.php的参数-红穆笔记

PHP 正则修改config.php的参数

config.php<?php return array( // 数据库类型 'type' => 'mysql', // 服务器地址 'hostname' => '127.0.0.1', // 数据库名 'database' => 'c51', // 用户名 'username' => 'roo...
红穆的头像-红穆笔记红穆2年前
0545
PHP glob() 函数-红穆笔记

PHP glob() 函数

定义和用法glob() 函数返回匹配指定模式的文件名或目录。该函数返回一个包含有匹配文件 / 目录的数组。如果出错返回 false。语法glob(pattern,flags)参数描述file必需。规定检索模式。size可选...
红穆的头像-红穆笔记红穆3年前
0535
html,php,ajax写的一个小说阅读器-红穆笔记

html,php,ajax写的一个小说阅读器

纯阅读版本:<?php // index.php session_start(); $uploadDir = 'books/'; $booksFile = $uploadDir . 'books.json'; // 初始化书籍存储目录 if (!file_exists($uploadDir)) mkdir($uploadD...
红穆的头像-红穆笔记红穆6天前
05115
php gzcompress() 和gzuncompress()函数实现字符串压缩-红穆笔记

php gzcompress() 和gzuncompress()函数实现字符串压缩

::(滑稽) 当我们说到压缩,我们可能会想到文件压缩,其实,字符串也是可以压缩的。PHP提供了 gzcompress() 和gzuncompress() 函数:$string = “Lorem ipsum dolor sit amet, consectetur adipi...
红穆的头像-红穆笔记红穆3年前
04915
css 定位(position)-红穆笔记

css 定位(position)

语法:position:static | relative | absolute | fixed | center | page | sticky默认值:static适用于:除display属性定义为table-column-group | table-column之外的所有元素继承性:无动画...
红穆的头像-红穆笔记红穆3年前
03513