随笔分类 -  php

摘要:string $version1 - 版本1 必填 string $version2 - 版本2 必填 string $operator - 理解为运算符吧 选填 operator: <、lt、<=、 le、>、 gt、>=、 ge、==、 =、eq、 !=、<> 和 ne 阅读全文
posted @ 2019-08-11 12:41 anobscureretreat 阅读(232) 评论(0) 推荐(0) 编辑
摘要:16进制转8进制 8进制数转换为10进制数 8进制数转换为16进制数 https://www.runoob.com/php/func-math-base-convert.html 阅读全文
posted @ 2019-08-05 19:50 anobscureretreat 阅读(258) 评论(0) 推荐(0) 编辑
摘要:我们仅在第一次调用 strtok() 函数时使用了 string 参数。在首次调用后,该函数仅需要 split 参数,这是因为它清楚自己在当前字符串中所在的位置。 如需分割一个新的字符串,请再次调用带 string 参数的 strtok() 参考: https://www.w3school.com. 阅读全文
posted @ 2019-08-05 19:25 anobscureretreat 阅读(159) 评论(0) 推荐(0) 编辑
摘要:(PHP 4, PHP 5, PHP 7) extension_loaded — 检查一个扩展是否已经加载 如果 name 指定的扩展已加载,返回TRUE,否则返回 FALSE。 Example #1 extension_loaded() 例子 参考: https://www.php.net/man 阅读全文
posted @ 2019-08-03 15:03 anobscureretreat 阅读(311) 评论(0) 推荐(0) 编辑
摘要:利用 print_r() 函数可以打印输出整个数组内容及结构,按照一定格式显示键和元素。注意 print_r() 函数不仅是只用于打印,实际它是用于打印关于变量的易于理解的信息。 例子1 输出 var_dump() 函数也可以用于打印数组的数据及结构。不过 var_dump() 函数功能比 prin 阅读全文
posted @ 2019-08-01 00:31 anobscureretreat 阅读(3558) 评论(0) 推荐(0) 编辑
摘要:输出 阅读全文
posted @ 2019-08-01 00:27 anobscureretreat 阅读(504) 评论(0) 推荐(0) 编辑
摘要:unlink() 函数删除文件。 如果成功,该函数返回 TRUE。如果失败,则返回 FALSE。 参考: https://www.runoob.com/php/func-filesystem-unlink.html 阅读全文
posted @ 2019-08-01 00:17 anobscureretreat 阅读(407) 评论(0) 推荐(0) 编辑
摘要:下面的例子创建名为 "testfile.txt" 的新文件。此文件将被创建于 PHP 代码所在的相同目录中: 下面的例子把姓名写入名为 "newfile.txt" 的新文件中: 打开 "newfile.txt" 文件,它应该是这样的: 如果现在 "newfile.txt" 包含了一些数据,所有已存在 阅读全文
posted @ 2019-08-01 00:06 anobscureretreat 阅读(3409) 评论(0) 推荐(0) 编辑
摘要:chmod() 函数改变文件模式。 如果成功则返回 TRUE,否则返回 FALSE。 例子 参考: https://www.w3school.com.cn/php/func_filesystem_chmod.asp 阅读全文
posted @ 2019-08-01 00:02 anobscureretreat 阅读(430) 评论(0) 推荐(0) 编辑
摘要:输出 参考: https://www.php.net/manual/en/ziparchive.addfile.php https://blog.csdn.net/qq_38794041/article/details/81483739 https://www.w3school.com.cn/php 阅读全文
posted @ 2019-08-01 00:00 anobscureretreat 阅读(169) 评论(0) 推荐(0) 编辑
摘要:例子 例子 参考: https://blog.csdn.net/qq_38125058/article/details/79145302 阅读全文
posted @ 2019-07-31 23:42 anobscureretreat 阅读(340) 评论(0) 推荐(0) 编辑
摘要:取出目录路径中的文件名字 code 输出 参考: 阅读全文
posted @ 2019-07-31 23:35 anobscureretreat 阅读(259) 评论(0) 推荐(0) 编辑
摘要:code 输出 参考: https://www.w3school.com.cn/php/func_string_rtrim.asp 阅读全文
posted @ 2019-07-31 23:22 anobscureretreat 阅读(169) 评论(0) 推荐(0) 编辑
摘要:例子 输出 参考: https://www.w3school.com.cn/php/func_string_ltrim.asp 阅读全文
posted @ 2019-07-31 23:18 anobscureretreat 阅读(215) 评论(0) 推荐(0) 编辑
摘要:输出 参考: 阅读全文
posted @ 2019-07-31 23:12 anobscureretreat 阅读(252) 评论(0) 推荐(0) 编辑
摘要:例子 输出 例子 输出 参考: https://www.w3school.com.cn/php/func_string_trim.asp 阅读全文
posted @ 2019-07-31 23:10 anobscureretreat 阅读(208) 评论(0) 推荐(0) 编辑
摘要:is_numeric() 函数用于检测变量是否为数字或数字字符串。 例子 输出 参考: https://www.runoob.com/php/php-is_numeric-function.html 阅读全文
posted @ 2019-07-31 22:40 anobscureretreat 阅读(542) 评论(0) 推荐(0) 编辑
摘要:PHP 中换行可以用 PHP_EOL 来替代,以提高代码的源代码级可移植性: unix系列用 \n windows系列用 \r\n mac用 \r 参考: https://www.runoob.com/w3cnote/php-php_eol.html 阅读全文
posted @ 2019-07-31 22:38 anobscureretreat 阅读(178) 评论(0) 推荐(0) 编辑
摘要:var_dump() 函数用于输出变量的相关信息 输出 参考: https://www.runoob.com/php/php-var_dump-function.html 阅读全文
posted @ 2019-07-31 22:34 anobscureretreat 阅读(291) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.w3school.com.cn/php/func_string_strpos.asp 阅读全文
posted @ 2019-07-31 22:28 anobscureretreat 阅读(161) 评论(0) 推荐(0) 编辑