小编Ash*_*shi的帖子

使用bootstrap标记输入将其转换为标记之前的过程标记

我在我的网站上使用bootstrap标签输入.基本上我想要做的是,要求用户在文本字段中输入网址,现在如果文本是有效网址,那么只将其转换为标记,否则不要.

有没有办法在转换成标签之前处理文本?

任何帮助都会得到满足.

谢谢

html javascript jquery twitter-bootstrap bootstrap-tags-input

4
推荐指数
1
解决办法
1880
查看次数

在php中创建zip文件并在添加之前重命名每个文件

我使用下面的代码来创建mp3的zip.我能够成功创建zip.但是如何在制作zip之前重命名每个文件...

    # define file array
    $files = array(
      'http://google.com/images/logo.png',
      'http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Wikipedia-logo-en-              big.png/220px-Wikipedia-logo-en-big.png'
     );

     # create new zip opbject
     $zip = new ZipArchive();

     # create a temp file & open it
     $tmp_file = tempnam('.','');
     $zip->open($tmp_file, ZipArchive::CREATE);

     # loop through each file
     foreach($files as $file){

        # download file
        $download_file = file_get_contents($file);

        #add it to the zip
        $zip->addFromString(basename($file),$download_file);

    }

    # close zip
    $zip->close();

    # send the file to the browser as a download
    header('Content-disposition: attachment; filename=download.zip');
    header('Content-type: application/zip');
    readfile($tmp_file);
Run Code Online (Sandbox Code Playgroud)

php zip

3
推荐指数
1
解决办法
1871
查看次数