vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Speech-mark turns to " in result of a query (https://vborg.vbsupport.ru/showthread.php?t=189716)

Dismounted 09-04-2008 07:25 AM

You run the function when you're looping through the results - not in the query itself.

sparklywater 09-04-2008 07:45 AM

Quote:

Originally Posted by Dismounted (Post 1614202)
You run the function when you're looping through the results - not in the query itself.

I looked in /includes/functions.php and found the following lines of code:

PHP Code:

// #############################################################################
/**
* Trims a string to the specified length while keeping whole words
*
* @param    string    String to be trimmed
* @param    integer    Number of characters to aim for in the trimmed string
* @param  boolean Append "..." to shortened text
*
* @return    string
*/
function fetch_trimmed_title($title$chars = -1$append true)
{
    global 
$vbulletin;

    if (
$chars == -1)
    {
        
$chars $vbulletin->options['lastthreadchars'];
    }

    if (
$chars)
    {
        
// limit to 10 lines (\n{240}1234567890 does weird things to the thread preview)
        
$titlearr preg_split('#(\r\n|\n|\r)#'$title);
        
$title '';
        
$i 0;
        foreach (
$titlearr AS $key)
        {
            
$title .= "$key \n";
            
$i++;
            if (
$i >= 10)
            {
                break;
            }
        }
        
$title trim($title);
        unset(
$titlearr);

        if (
vbstrlen($title) > $chars)
        {
            
$title vbchop($title$chars);
            if ((
$pos strrpos($title' ')) !== false)
            {
                
$title substr($title0$pos);
            }
            if (
$append)
            {
                
$title .= '...';
            }
        }

        
//$title = fetch_soft_break_string($title);
    
}

    return 
$title;
}

// 


Now if I use the above code as it is in my page it doesn't work, ie. no trimming of the thread-titles. I've tried changing the value of $chars from -1 to other values like 45 but that doesn't work either. Do I need to change anything else for this code to correctly trim the thread-titles?

Can you please give an example of the code I need to use?

Opserty 09-04-2008 09:15 AM

fetch_trimmed_title() is a function, you use it like any other function such as substr() or rand() or mysql_query() or something. It is just a user defined function, nothing special.
Quote:

fetch_trimmed_title (line 641)
Trims a string to the specified length while keeping whole words
fetch_trimmed_title (string $title, [integer $chars = -1], [boolean $append = true])
  • string $title: String to be trimmed
  • integer $chars: Number of characters to aim for in the trimmed string
  • boolean $append: Append "..." to shortened text

That tells you what variables you put into the function. (It is the same as when http://php.net/substr lists what parameters are for the substr() function)

sparklywater 09-05-2008 07:32 PM

what does the -1 in ' integer $chars = -1 ' mean?

Can someone refer me to a website / tutorial which would answer these kind of questions?

Dismounted 09-06-2008 05:04 AM

Look in the function's code - you even posted it. It's one of the first lines of the actual function.

sparklywater 09-06-2008 07:20 AM

Quote:

Originally Posted by Dismounted (Post 1615643)
Look in the function's code - you even posted it. It's one of the first lines of the actual function.

I know it's the number of characters to aim for in the trimmed string, but I was asking specifically about the negative value, ie. why the number of characters is a negative value ( -1 ).

Opserty 09-06-2008 07:31 AM

Dismounted meant you should read the PHP code, for the function, you yourself have already posted...

https://vborg.vbsupport.ru/showpost....8&postcount=12

(Read it line by line if you need to :p)

sparklywater 09-06-2008 08:00 AM

that doesn't answer my question, and you're not helping.

Opserty 09-06-2008 08:20 AM

Go to the 15th line of the PHP code you posted... I don't need to help you. The answer is staring you in the face. ;)

If, after you've read the 15th line (and the few lines after it) and I mean after! (No cheating :p) You still don't understand, post the 15th line and 3 lines underneath it.


All times are GMT. The time now is 09:05 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01284 seconds
  • Memory Usage 1,748KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete