Jump to content
php.lv forumi

Recommended Posts

Posted

Sveiki, laimīgu un produktīvu jauno gadu! :)

 

Man ir tāda problēma...

Uztaisīju skriptiņu, kas apgriež tekstu jaunumiem, bet radās problēma ar to, ka tiek nogriezti arī html aizvērsanas tāgi.

 

function get_excerpt( $id ) {
   $string = $this->db
                      	->select('LEFT(text, 500) as excerpt', FALSE)
                      	->where('id', $id)
                      	->get('news')
                      	->result();
   $string = $string[0]->excerpt;
   $spaceIndex = strrpos($string, ' ');
   $string = substr($string, 0, $spaceIndex)."...";
   return $string;
}

 

Varbūt kāds varētu ieteikt kaut ko, palīdzēt apkarot šo problēmu?

Būtu ļoti pateicīgs.

Paldies jau iepriekš! :)

Posted

Automātiski nogriezt tekstu tā, lai viss būtu forši neizdosies. Risinājums ir - izveidot atsevišķu lauku rakstiem, kur tad arī ievada īso aprakstu par rakstu, kas būtu plain-text.

Posted

Domāju, ka panākt to var. :P Kaut kā tikai jāizdomā kā neļaut "nogriezt" tieši HTML tagus.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...