将输出格式化为小写 [英] Format output to lowercase

查看:132
本文介绍了将输出格式化为小写的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要将<?php echo $EM_Category->name; ?>的输出仅更改为小写.

I need to change the output of <?php echo $EM_Category->name; ?> to lowercase only.

现在输出为Entertainment.我如何将它发送到entertainment

Output now is Entertainment. How would I get it to entertainment

完整的代码部分是:

<?php foreach(EM_Categories::get(array('orderby'=>'category_name')) as $EM_Category): ?>
<a href="<?php echo THEME_URL; ?>/events/category/<?php echo $EM_Category->name; ?>" class="browse-cat">
   <span><?php echo $EM_Category->name; ?></span><img src="<?php echo THEME_URL; ?>/images/box_arrow.png" alt="arrow" height="15" width="15">
</a>
<?php endforeach; ?>

推荐答案

<?php echo strtolower($EM_Category->name); ?>

http://us.php.net/strtolower

这篇关于将输出格式化为小写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆