我使用Yii Framework创建了一个应用程序,我遇到了如下问题:
addNewRow()
我需要改变:
http://example.com/articles-89/Perk+and+UPR+stress+measurement/
将此标志和大写http://example.com/articles-89/perk-and-upr-stress-measurement/
添加到小写字母中。
我正在使用Yii&我的配置文件是
main.php
-
如果有人帮助,我真的很感激。
答案 0 :(得分:0)
您应修改unique(df1$uid[df1$Likes %in% WhatLikes])
#[1] 123 321 455 699
的模式,如下所示(允许使用小写字母和title
符号):
-
代替[a-z\-]+
并准备将用于将部分网址转换为小写和 - 符号的函数,例如:
.*?
使用此功能,您应该在生成网址的地方准备function convert($string)
{
$replaceFrom = array('+');
$replaceTo = array('-');
$string = strtolower($string);
return str_replace($replaceFrom, $replaceTo, $string);
}
参数,例如创建超链接等。