This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?=mb_strtolower(FormatDateFromDB($date, 'DD MMMM YYYY'), 'windows-1251')?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
$str = "Создание символьного кода через API"; | |
$arParams = array( | |
"max_len" => 255, //Максимальная длина строки | |
"change_case" => false, //Привести к регистру: false - оставить как есть, U - к верхнему, L - к нижнему | |
"replace_space" => '-', //Символ замены пробела | |
"replace_other" => '-', //Символ замены остальных символов | |
"delete_repeat_replace" => true //Удалить лишние символы замены | |
); |
NewerOlder