Str.php 395 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: PFG2018
  5. * Date: 2019/4/8
  6. * Time: 11:35
  7. */
  8. namespace common\Helps;
  9. use yii\helpers\StringHelper;
  10. class Str extends StringHelper{
  11. public static function trimall($str)
  12. {
  13. $oldchar=array(" "," ","\t","\n","\r");
  14. $newchar=array("","","","","");
  15. return str_replace($oldchar,$newchar,$str);
  16. }
  17. }