代码压缩
代码压缩功能可以使得代码体积更小,性能更好。系统自带的代码压缩功能会将代码压缩成一行,既"one sloc"。
压缩示例
<?php
// after require LMLPHP
lml()->refineCode($code, [optional $compressedCode])
?>
refineCode()方法第二个参数系可选参数。如果传入则被压缩的代码会赋值给该参数。如果不传入第二个参数,可以使用getResval($compressedCode)获取。如下获取压缩返回代码的两种方式:
<?php
// after require LMLPHP
$compressedCode='';
lml()->refineCode($code, $compressedCode)
// or
lml()->refineCode($code)->getResval($compressedCode);
?>