用strtolower加入str_replace

时间:2011-04-20 12:45:02

标签: php str-replace lowercase

简单的希望,是否有一种方法可以将strtolower和str_replace一起使用。目前我正在改变一个变量的值并单独声明它,并认为如果我能一起做这个会更有效吗?

$afixteam = str_replace(" ","-",$fixData['ateam_name']);
$afixteamlink = strtolower($afixteam);

感谢。

2 个答案:

答案 0 :(得分:7)

这应该这样做。您可以按如下方式在方法中运行方法,缩减为单行。

$afixteam = strtolower(str_replace(" ","-",$fixData['ateam_name']));

答案 1 :(得分:2)

$afixteam = strtolower(str_replace(" ","-",$fixData['ateam_name']));

你对大多数事情的看法如何。