PageRenderTime 48ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/lib/modules/smarty/plugins/modifier.urlencode.php

https://github.com/dmkfasi/molinos-cms
PHP | 4 lines | 4 code | 0 blank | 0 comment | 0 complexity | 4547a152628cc4521eee92e23e3faaa5 MD5 | raw file
Possible License(s): AGPL-1.0
  1. <?php
  2. function smarty_modifier_urlencode($string) {
  3. return urlencode(iconv("utf-8", "windows-1251", $string));
  4. }