php
水机.Threeki
这个作者很懒,什么都没留下…
展开
-
Access denied for user 'root'@'localhost' (using password: YES)
找到文件D:\xampp\htdocs\Application\Common\Conf\config.php将 ‘DB_PWD’ => ‘root’改为 ‘DB_PWD’ => ‘’即将密码改成空即可原创 2019-01-19 11:18:23 · 434 阅读 · 0 评论 -
thinkphp怎么做模糊查询搜索,完整实例,笨办法
$name = I('post.name');//接收post传值$mail = I('post.mail');$age = I('post.age');if(!empty($name)){$where['name'] = array('like','%'.$name.'%');//封装模糊查询 赋值到数组}if(!empty($mail)){$where['mail'] = arr...转载 2019-02-11 18:14:53 · 895 阅读 · 0 评论 -
PHP:如何获得文件创建时间?
使用 filectime对于Windows,它将返回创建时间,而对于Unix,更改时间是最好的,因为在Unix上没有创建时间(在大多数文件系统中)。而对于Unix,更改时间是最好的,因为在Unix上没有创建时间(在大多数文件系统中)。Note also that in some Unix texts thectime of a file is referred to asbeing...原创 2019-02-12 11:18:28 · 1005 阅读 · 0 评论 -
PHP FileSystem 文件系统api整理
PHP FileSystem文件信息相关filetype()filesize()filectime()filemtime()fileatime()is_readable()is_writeable() / is_writable()is_executable()is_file()pathinfo()dirname()basename()file_exists( ...原创 2019-02-12 18:08:54 · 470 阅读 · 0 评论 -
ThinkPHP的where方法的in操作符说明
//写法1:$data = array();$data['id'] = array('in','4');$tag = $tag->where($data)->select();//写法2:$tag = $tag->where(array('id'=>array('in','4')))->select();$tag = $tag->where(arr...原创 2019-03-18 12:31:29 · 6511 阅读 · 0 评论