PageRenderTime 297ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/katya/homework1/str_replace.php

https://bitbucket.org/slovar27/uroki
PHP | 7 lines | 5 code | 2 blank | 0 comment | 0 complexity | 3385b2fe29709a14b942adf28222c450 MD5 | raw file
Possible License(s): LGPL-2.1
  1. <?php
  2. $str= strtolower($_POST['string']);
  3. $str= str_replace("the","***",$str);
  4. echo $str;
  5. ?>