ヘルプ、
ディレクトリ/フォルダ名にスペースが含まれていると、ファイルのhtmlコンテンツを取得する際に問題が発生します。
CURLを使用してHTMLコンテンツを取得しています。これは、HTMLコードを取得するためにアクセスしているリンクのサンプルです。
http://dev24oct20part2.globalbizcloud.com/admin/content/module_templates/templates/products/all_prods/Product temP/index.html
ご覧のとおり、ディレクトリに私のindex.htmlを含むスペースがあり、これによりエラーが発生し、コンテンツを取得できなくなります。
/Product temP/index.html
これが私のコードです:
$template = $this->mod_template_link.$this->module_category.'/'.$this->module_unique_key.'/'.$this->module_template.'/index.html';
//value of this variable is the link above..
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $template);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$contents = curl_exec ($ch);
curl_close ($ch);
return $this->translate_template($contents);
フォルダ名にスペースがない場合は正常に動作します。
アドバイスや提案をいただければ幸いです。
前もって感謝します。