我按照以下步骤完成了工作:
我编写了用于读取带有图像的MS word文件的代码。
从xml代码中提取文件路径后,我在本地服务器上成功上传了该映像。 xml文件的示例: - <pic:cnvpr id="0" name="Picture 4" descr="C:\Users\Administrator\Documents\tshirt\14714-yepme-s-275x340-imadpnn23zqpjqzz.jpeg"</pic:cnvpr>
当我在服务器上传word文件并从不同PC上的服务器下载时,文件中的图像与启动时一样。
但是现在当我从服务器上传word文件时,显示本地服务器路径和未上传图像的文件。
我的问题是:如何在服务器上传word文件的图像?
在阅读xml文件的描述之后,我就像这样复制那个图像
$pattern2 = '/descr="(.*?)"\/>/';
$str = str_replace('\\', '/', $val);
copy($str,$imagepath);
换句话说,我想从我的PC上传服务器上的文件,我有文件的本地路径。
以下是我使用read_file_docx
函数将docx
文件转换为xml
并使用某些分隔符的完整代码:
if($_FILES["file"]["name"][$value]!='' && ($ext=='docx' || $ext=='doc')){
$rand=time();
$fileName=$scheduleId."_".$value."_".$rand.".doc";
$cvsId=uploadCsvForQuestion($value,$scheduleId,$fileName,$rand);
copy(
$_FILES["file"]["tmp_name"][$value],
"../question_csv/" .$fileName
); // file save in folder
//extract data from doc file
$allData=read_file_docx($_FILES["file"]["tmp_name"][$value],"r");
// explode from question
$rre=explode("^@@@^",$allData);
//print_r($allData);exit;
$pattern2 = '/descr="(.*?)"\/>/';
foreach($rre as $key=>$rrevalue){
if($key!=0){
$remaks=explode("Remarks:",$rrevalue);
$hint=explode("Exp:",$remaks[0]); //explode from hint.
$ans=explode("Ans-",$hint[0]);//explode from ans.
$option=explode("^@@^",$ans[0]);//explode from options with question.
preg_match_all($pattern2, $hint[1], $hintmatches);
// All images in hint will save in array then save in field
if(is_array($hintmatches)){
foreach($hintmatches[1] as $key=>$val){
$str = str_replace('\\', '/', $val);
if(file_exists( $str)){
$imag1=rand().basename($str);
$sestination="../question_image/";
copy($str,$sestination."".$imag1);
$images_hint[]=$imag1;
}
}
if(is_array($images_hint)){
$imagesHint=implode("||",$images_hint);
$images_hint='';
}
}
foreach ($option as $keys=>$valuew) {
preg_match_all($pattern2, $valuew, $matches2);
// All images in that section like question and option will save in array then save in field
if(is_array($matches2[1])){
foreach($matches2[1] as $key=>$val){
$str = str_replace('\\', '/', $val);
if(file_exists($str)){
$imag2=rand().basename($str);
$sestination="../question_image/";
copy($str,$sestination."".$imag2);
$imagesArray[]=$imag2;
}
}
if(is_array($imagesArray)){
$imag=implode("||",$imagesArray);
$imagesArray='';
}
}
$valuew = strip_tags($valuew,"<sub><sup>");
if($keys==0){
//$str11= substr($valuew,'2'); old one
$newQuesion=explode(".",$valuew);
//
$num=0;
if($newQuesion!=''){
$hint = strip_tags($hint[1],"<sub><sup>");
$quesionId=uploadQuestion($cvsId,$value,$scheduleId,addslashes($newQuesion[1]),$hint,$imag,$imagesHint,$imagesHint,$remaks[1]);//save question
$imagesHint='';
}
}else{
uploadOption($quesionId,addslashes($valuew),$keys,$imag);//save option
}
$num++; $imag="";
}
if($ans[1]!=''){
uploadAnswer($quesionId,$ans[1]);//save answer
}
}
}
}
function read_file_docx($filename){
$striped_content = '';
$content = '';
if(!$filename || !file_exists($filename))
return false;
$zip = zip_open($filename);
if (!$zip || is_numeric($zip))
return false;
while ($zip_entry = zip_read($zip)) {
if (zip_entry_open($zip, $zip_entry) == FALSE) continue;
if (zip_entry_name($zip_entry) != "word/document.xml") continue;
$content .= zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
zip_entry_close($zip_entry);
}
file_put_contents('question.xml', $content);
$content2 = explode('<w:vertAlign w:val="subscript"/></w:rPr><w:t>', $content);
$pattern = "/<w:vertAlign w:val=\"subscript\"\/><\/w:rPr><w:t>(.*?)<\/w:t><\/w:r>/";
preg_match_all($pattern, $content, $matches);
$var=array_map("strip_tags_sub",$matches[1]);
foreach($content2 as $key=>$value)
{
if($key!=0){
$var1=strip_tags($var[$key]);
$content=str_replace('<w:vertAlign w:val="subscript"/></w:rPr><w:t>'.$var1."</w:t></w:r>", $var[$key],$content);
}
}
$content1 = explode('<w:vertAlign w:val="superscript"/></w:rPr><w:t>', $content);
$pattern = "/<w:vertAlign w:val=\"superscript\"\/><\/w:rPr><w:t>(.*?)<\/w:t><\/w:r>/";
preg_match_all($pattern, $content, $matchesa);
$var1=array_map("strip_tags_sup",$matchesa[1]);
foreach($content1 as $key=>$value)
{
if($key!=0){
$varq=strip_tags($var1[$key]);
$content=str_replace('<w:vertAlign w:val="superscript"/></w:rPr><w:t>'.$varq."</w:t></w:r>", $var1[$key],$content);
}
}
$content = str_replace('</w:r></w:p>', " ", $content);
$content = str_replace('</w:r></w:p></w:tc><w:tc>', " ", $content);
$allData = strip_tags($content,'<pic:cNvPr><sub><sup>');
$allData = str_replace('(Q', "^@@@^", $allData);//saperate from question
$allData = str_replace('1).', "^@@^", $allData);//saperate from option
$allData = str_replace('2).', "^@@^", $allData);//saperate from option
$allData = str_replace('3).', "^@@^", $allData);//saperate from option
$allData = str_replace('4).', "^@@^", $allData);//saperate from option
$allData = str_replace('5).', "^@@^", $allData);//saperate from option
$allData = str_replace('6).', "^@@^", $allData);//saperate from option
return $allData ;
}
答案 0 :(得分:1)
从localhost路径更改二进制数据中的图像,之后从服务器上的二进制数据中获取图像。
答案 1 :(得分:0)
此处的问题是您尝试复制()在客户端上具有路径的文件,但copy()在服务器上运行。 由于服务器上不存在该文件,您将无法复制它。它适用于localhost,因为客户端和服务器只是相同的文件系统。
您可以使用Javascript等客户端代码实现此功能,您可以使用您提取的本地文件路径提交上传表单,服务器端PHP代码将处理上传的图像。< / p>