当前位置: 首页>>代码示例>>PHP>>正文


PHP XString::write2file方法代码示例

本文整理汇总了PHP中XString::write2file方法的典型用法代码示例。如果您正苦于以下问题:PHP XString::write2file方法的具体用法?PHP XString::write2file怎么用?PHP XString::write2file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在XString的用法示例。


在下文中一共展示了XString::write2file方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: processSource

    private function processSource($sourceInfo)
    {/*{{{*/
        if( empty($sourceInfo['tpl']) || 
            empty($sourceInfo['data']) || 
            empty($sourceInfo['res']))
            return false;

        foreach ($sourceInfo['data'] as $dataName => $dataFiles)
        {
            $resDataPath = $this->resPath.$dataName."/";
            if (isset($sourceInfo['res']['subset']) && $sourceInfo['res']['subset'])
            {
                $resDataPath = $this->resPath.$dataName."_".$sourceInfo['res']['subset']."/";
            }
            XString::clearDir($resDataPath);
            foreach($dataFiles as  $num => $dataFile)
            {
                $resData = $this->wrap($sourceInfo['tpl'],$dataFile);
                $resDataFile = $resDataPath.$num.".".$sourceInfo['res']['extension'];
                XString::write2file($resData, $resDataFile);
                $this->myEcho("   写入 $resDataFile \n");
            }
        }
    }/*}}}*/
开发者ID:sdgdsffdsfff,项目名称:hdf-client,代码行数:24,代码来源:wrapper.php

示例2: generateIndexBySource

 public function generateIndexBySource($className)
 {/*{{{*/
     $configs = BeanFinder::get('configs');
     if(isset(self::$classList[$className]))
     {
         $tplList = $this->returnTemplatesFromSource($className);
         foreach ($tplList as $tpl)
         {
             $className = str_replace("_".$this->getSuffix($tpl), '', $tpl);
             $dataPath = $configs->resPath.strtolower($className);
             $xmlData = "<?xml version='1.0' encoding='$this->charset'?><sddindex>";
             if (is_dir($dataPath)) 
             {
                 $handle = opendir($dataPath);
                 while (false !== ($file = readdir($handle))) 
                 {
                     if (preg_match('/[0-9]/',$file)) 
                     {
                         $xmlData .= '<sdd><loc>'.$configs->baseUrl.$className."/".$file.'</loc><lastmod>'.XDateTime::now().'</lastmod></sdd>';
                     }
                 }
                 $xmlData .= '</sddindex>';
                 $file = $dataPath."/index.xml";
                 XString::write2file($xmlData, $file);
                 closedir($handle);
                 echo "目录文件".$file."生成\n";
             }
         }
     }
 }/*}}}*/
开发者ID:sdgdsffdsfff,项目名称:hdf-client,代码行数:30,代码来源:openfactory.php


注:本文中的XString::write2file方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。