SourceTree Export 出错

WBOY
Release: 2016-06-20 12:29:55
Original
1302 people have browsed it

http://my.oschina.net/zgldh/blog/185259

我按照这篇文档制作导出功能,出现以下错误


export.bat

@set export_php="D:\My\Libraray3\tool\export.php"@set export_dir="D:\My\Libraray3\export"@set source_files=%*@rmdir %export_dir% /s/q@mkdir %export_dir%@php %export_php% %source_files%@explorer %export_dir%
Copy after login


export.php
<?php    date_default_timezone_set('Asia/Shanghai');    if($argc == 0)    {        exit('Nothing to copy');    }         define('DS', DIRECTORY_SEPARATOR); // I always use this short form in my code.    $source_dir = 'D:'.DS.'My'.DS.'Libraray3';    $exp_dir = 'D:'.DS.'My'.DS.'Libraray3'.DS.'export';    function ExportOneFile($path)    {        global $source_dir,$exp_dir;             $final_source = $source_dir.DS.$path;        $final_dest = $exp_dir.DS.$path;             $final_dest_dir = dirname($final_dest).DS;        if(!is_dir($final_dest_dir))        {            mkdir($final_dest_dir,0777,true);        }        return copy($final_source,$final_dest);    }         foreach($argv as $index=>$path)    {        if($index === 0)        {            continue;        }        if(ExportOneFile($path))        {            echo $index.' : '.$path." exported\n";        }    }        echo "All Complete. Please go to $exp_dir to view files";
Copy after login



回复讨论(解决方案)

你先吧浏览器切换到 gbk 编码,看看是否有正常输出

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!