美文网首页
9月10日知识点记录

9月10日知识点记录

作者: 默言1024 | 来源:发表于2017-09-10 18:56 被阅读0次

    一.数据过滤

    1)自定义替换特殊字符

    /*
     先声明
    */
    function convert($string)
    {
    return str_replace("要替换的字符", "替换成什么字符", $string);
    }
    /*
    再调用函数
    */
    filter_var($string, FILTER_CALLBACK,
    array("options"=>"convertSpace"));
    

    2)

    二.更新数据的知识点

    更新的显示页面要和提交更新数据的页面分离

    function showUpd($id)//查找即将更新的数据
    {
    $dbh = db();
    $std = $dbh->prepare('SELECT image_name, add_name, time FROM image WHERE id = ?');
    $std->execute([$id]);
    $res = $std->fetch();
    return $res;
    }
    
    function updDatas($upd_data)//更新数据
    {
    $dbh = db();
    $upd = $dbh->prepare('UPDATE image SET image_name = ?, add_name = ?, time = ? WHERE id = ?');
    $upd_stm = $upd->execute($upd_data);
    return $upd_stm;
    }
    

    三.相册系统要点记录

    _DIR_的意思是返回你当前文件的所在文件夹的路径


    删除文件的操作:

    $oldFile = DIR . '/uploads/' . $res['add_name'];
    unlink($oldFile);

    相关文章

      网友评论

          本文标题:9月10日知识点记录

          本文链接:https://www.haomeiwen.com/subject/vmezjxtx.html