Quick Search:
 
 PHP Code: Echo 'n' number of words Jump to:  
Category: >> PHP Code >> Echo 'n' number of words  

<< lastnext >>

Snippet Name: Echo 'n' number of words

Description: To get the first 250 words offset you can use php.net/stripos in a loop like this.

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: February 27th, 2009

<?PHP
 
$the_string = "a very long string of words";
 
$space_offset = 0; 
$space_num = 0; 
 
WHILE($space_num <= 250){
$space_offset  = stripos($the_string, ' ',$space_offset + 1);
$space_num++;
} 
 
?>
 
// after the loop completes, $space_offset will have the offset 
// of the space just before the 250th word.


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org