Published in: PHP
Devuelve un texto acortado según el parámetro $words introducido.
public function trim_text($text, $words = 50) { if ($sz > $words) { } return $text; }
You need to login to post a comment.
Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.
javierarce on 07/18/06
7 people have marked this snippet as a favorite
luman
neverwolf
jkochis
NexusRex
blakeb
hudge
pixelhandler
Published in: PHP
Devuelve un texto acortado según el parámetro $words introducido.
public function trim_text($text, $words = 50) { if ($sz > $words) { } return $text; }
You need to login to post a comment.