删除最后一个记录逗号

时间:2015-11-24 06:58:39

标签: php arrays substr

我想从获取的值中删除最后一条记录逗号。我用var owl = jQuery("#prd-slider"); owl.owlCarousel({ autoPlay :true, slideSpeed : 300, nav : false, loop: true, items : 5, //10 items above 1000px browser width itemsDesktoplarg : [1000,2], //5 items between 1000px and 901px itemsDesktop : [700,2], itemsDesktopSmall : [660,2],// betweem 900px and 601px itemsTablet: [650,1], //2 items between 600 and 0 itemsMobile : [400,1], // itemsMobile disabled - inherit from itemsTablet option }); jQuery('.prev1').click(function(){ jQuery("#prd-slider").find('.owl-prev').click(); }); jQuery('.next1').click(function(){ jQuery("#prd-slider").find('.owl-next').click(); }); 从值'$ album'中删除了最后一个字符逗号。我抓住了:

  

SyntaxError:意外的标记,'

$album1 = substr($album,0,-1);

中的错误
substr()

3 个答案:

答案 0 :(得分:1)

使用PHP puts "What word starts with the letter 'A'?" ans = gets.chomp puts "Correct!" if ans.include? ....... 从字符串末尾开始删除空格(或其他字符)

rtrim

完整代码

rtrim($album, ",")

Demo

答案 1 :(得分:0)

您可以使用trim删除字符串中的最后一个逗号

像这样

$album1 = trim($album, ',');

答案 2 :(得分:0)

尝试使用以下代码:

$rows = array();
while($fet_pic=mysql_fetch_array($albpic))
{  
    $rows[] = $fet_pic['CONTENT_VALUE'];
}
$album = implod(", ",$rows);