Jump to content
php.lv forumi

Teksta apgraizīšana


daviskrex

Recommended Posts

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š! :)

Link to comment
Share on other sites

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...