随笔分类 - php
摘要:关于进程和线程,想要了解一个东西,必须知道ta的历史(产生的原因) 发展的过程。 传送门 https://blog.csdn.net/weixin_41247813/article/details/81603445
阅读全文
摘要:RewriteEngine on RewriteCond %{REQUEST_FILENAME} ! d RewriteCond %{REQUEST_FILENAME} ! f RewriteRule ^(. )$ index.php [L,E=PATH_INFO:$1]
阅读全文
摘要:php实现Iterator接口 对手册中的案例进行分析 class myIterator implements Iterator { private $position = 0; private $array = array( "firstelement",//7、遍历第一个元素 "secondel
阅读全文