>백엔드 개발 >PHP 튜토리얼 >php table循环 问题很简单 求帮助

php table循环 问题很简单 求帮助

WBOY
WBOY원래의
2016-06-23 14:06:381049검색

怎样table循环将它们输出啊,现在运行结果就一个you 3


nbsp;html PUBLIC "-//w3c//DTD XHTML 1.1 //EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">



   word_table.php 



function splitter($str) {

// Create the empty word frequency array
  $freq = array();

// Split the parameter string into words
  $words = preg_split("/[ .,;:!?]\s*/", $str);

// Loop to count the words (either increment or initialize to 1)
  foreach ($words as $word) {
    $keys = array_keys($freq);
    if(in_array($word, $keys))
      $freq[$word]++;
    else
      $freq[$word] = 1;
  }

  return $freq;
} #** End of splitter

// Main test driver

  $str = "apples are good for you, or don't you like apples? 
          or maybe you like oranges better than apples";

// Call splitter

  $tbl = splitter($str);
?>


  
   
     
     
   

         $sorted_keys = array_keys($tbl);
    sort($sorted_keys);
    foreach ($sorted_keys as $word);
?> 

   
     
 
   

  
word frequency

 

 

 




回复讨论(解决方案)

   sort($sorted_keys);
    foreach ($sorted_keys as $word)  {
?> 

   


     
 
 
 
   

  
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.