PHP怎么创建文件并且写入文字我要封装个方法 创建文件并且写入文字 参数2个 width和height实行后的效果 比方说如100 300生成文件名叫s100300.less里面内容是@import "shiying";@screen_width:100px;@screen_height:300px;这个函数怎么写。。 红色的要对应哦------解决方案-------------------- 本帖最后由 xuzuning 于 2014-08-27 17:37:16 编辑 function mkless($width, $height) { $r[] = [email protected] "shiying";'; $r[] = sprintf([email protected]_width:%spx;', $width); $r[] = sprintf([email protected]_height:$spx;', $height); file_put_contents("s$width$height.less", join(PHP_EOL, $r));}